org.apache.log4j.helpers.FormattingInfo Java Examples

The following examples show how to use org.apache.log4j.helpers.FormattingInfo. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MyPatternParser.java    From cacheonix-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
UserDirPatternConverter(FormattingInfo formattingInfo) {
  super(formattingInfo);
}
 
Example #2
Source File: MyPatternParser.java    From cacheonix-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
UserDirPatternConverter(FormattingInfo formattingInfo) {
  super(formattingInfo);
}
 
Example #3
Source File: LogNumberPatternConverter.java    From olat with Apache License 2.0 4 votes vote down vote up
LogNumberPatternConverter(FormattingInfo formattingInfo) {
    super(formattingInfo);
}
 
Example #4
Source File: LogNumberPatternConverter.java    From olat with Apache License 2.0 4 votes vote down vote up
LogNumberPatternConverter(FormattingInfo formattingInfo) {
    super(formattingInfo);
}
 
Example #5
Source File: ExtendedPatternParser.java    From primecloud-controller with GNU General Public License v2.0 4 votes vote down vote up
public HeaderPatternConverter(FormattingInfo formattingInfo) {
    super(formattingInfo);
}