Skip to content

Commit

Permalink
Log ios/macos version on app startup
Browse files Browse the repository at this point in the history
  • Loading branch information
tmolitor-stud-tu committed Nov 11, 2023
1 parent 002956b commit d031476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Monal/Classes/HelperTools.m
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ +(void) configureLogging
NSString* version = [infoDict objectForKey:@"CFBundleShortVersionString"];
NSString* buildDate = [NSString stringWithUTF8String:__DATE__];
NSString* buildTime = [NSString stringWithUTF8String:__TIME__];
DDLogInfo(@"Starting: Version %@ (%@ %@ UTC, %@)", version, buildDate, buildTime, [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIdentifier"]);
DDLogInfo(@"Starting: Version %@ (%@ %@ UTC, %@) on %@", version, buildDate, buildTime, [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIdentifier"], [UIDevice currentDevice].systemVersion);
[DDLog flushLog];

DDLogVerbose(@"QOS level: %@ = %d", @"QOS_CLASS_USER_INTERACTIVE", QOS_CLASS_USER_INTERACTIVE);
Expand Down

0 comments on commit d031476

Please sign in to comment.