Latest | 2.0.0 |
---|---|
Homepage | https://github.com/ishikawa/K9LogPatternFormatter |
License | MIT |
Platforms | ios 7.0, osx 10.9, requires ARC |
Frameworks | Foundation |
Authors |
K9LogPatternFormatter is flexible logging message formatter configurable with pattern string (inspired by Log4j PatternLayout). It includes a formatter implementation for CocoaLumberjack. Writing a new formatter for other framework is easy.
Usage
#import <CocoaLumberjack/CocoaLumberjack.h>
#import <K9LogPatternFormatter/K9LogLumberjackPatternFormatter.h>
...
id<DDLogger> consoleLogger = [DDTTYLogger sharedInstance];
consoleLogger.logFormatter = [[K9LogLumberjackPatternFormatter alloc] initWithPattern:@"%.1p: %m"];
[DDLog addLogger:consoleLogger];
Supported patterns:
%d{pattern}
timestamp formatted by usingNSDateFormatter
%d{HH':'mm':'ss}
prints14:34:02
- Threre are some predefined formats:
%d{ISO8601}
prints2014-03-12 14:34:02,781
%d{ISO8601_BASIC}
prints20140312 143402,781
%d{ABSOLUTE}
prints14:34:02,781
%d{DATE}
prints12 Mar 2014 14:34:02,781
%d{COMPACT}
prints20140312143402781
- If no format is given,
ISO8601
is used.
%m
message%p
log level%F
file name without extension%l
file path%L
line number%M
function or method name%%
single percent sign ('%'
)
Min/max width modifier is also supported:
%20m
Left pad with spaces and min width = 20%-5m
Right pad with spaces and min width = 5%.10m
Truncate if message is longer than 10%-5.10m
Right pad with spaces and min:5, max:10
For example, if the conversion pattern is @"[%-5p] %d{HH':'mm':'ss} %m"
, it would yield the output:
[DEBUG] 00:45:20 Message1
[WARN ] 00:45:21 Message2
@"%.1p: %m at %F:%L"
would yield:
D: Message1 at File1:15
W: Message2 at File2:32
Requirements
- Mac OS X 10.9
- iOS 7.0
- Xcode 7
Installation
If you want formatter for CocoaLumberjack, in your Podfile:
pod "K9LogPatternFormatter/Lumberjack"
or, you can grab core classes to writting your own formatter:
pod "K9LogPatternFormatter/Core"
License
MIT license
Latest podspec
{ "name": "K9LogPatternFormatter", "version": "2.0.0", "summary": "K9LogPatternFormatter is flexible logging message formatter configurable with pattern string", "homepage": "https://github.com/ishikawa/K9LogPatternFormatter", "license": "MIT", "authors": { "Takanori Ishikawa": "[email protected]" }, "source": { "git": "https://github.com/ishikawa/K9LogPatternFormatter.git", "tag": "2.0.0" }, "frameworks": "Foundation", "requires_arc": true, "platforms": { "ios": "7.0", "osx": "10.9" }, "subspecs": [ { "name": "Core", "source_files": "Classes/Core/**/*.{h,m}" }, { "name": "Lumberjack", "source_files": "Classes/Lumberjack/**/*.{h,m}", "dependencies": { "K9LogPatternFormatter/Core": [], "CocoaLumberjack/Default": [] } } ] }
Sat, 27 Feb 2016 07:31:03 +0000