Skip to content

Commit

Permalink
Shortening time output.
Browse files Browse the repository at this point in the history
  • Loading branch information
drekka committed Oct 13, 2016
1 parent 8b4245d commit f8363c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StoryTeller/STAbstractLogger.m
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ -(instancetype) init {
self = [super init];
if (self) {
_dateFormatter = [[NSDateFormatter alloc] init];
_dateFormatter.dateFormat = @"HH:mm:ss.SSSS";
_dateFormatter.dateFormat = @"HH:mm:ss.SSS";
self.lineTemplate = [NSString stringWithFormat:@"%@ %@:%@ %@", STLoggerTemplateKeyTime, STLoggerTemplateKeyFile, STLoggerTemplateKeyLine, STLoggerTemplateKeyMessage];
_lastThreadWasMain = YES;
}
Expand Down

0 comments on commit f8363c6

Please sign in to comment.