Skip to content

Commit

Permalink
Add suppress to loglevel to string
Browse files Browse the repository at this point in the history
  • Loading branch information
nonelse authored and uerceg committed Dec 11, 2017
1 parent 7402855 commit 3d463f9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Adjust/ADJLogger.m
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ + (ADJLogLevel)logLevelFromString:(NSString *)logLevelString {
if ([logLevelString isEqualToString:@"assert"])
return ADJLogLevelAssert;

if ([logLevelString isEqualToString:@"suppress"])
return ADJLogLevelSuppress;

// default value if string does not match
return ADJLogLevelInfo;
}
Expand Down

0 comments on commit 3d463f9

Please sign in to comment.