Skip to content

Commit

Permalink
[PAXLOGGING-229] Support OFF/NONE level for the default logger
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Apr 6, 2017
1 parent 4c0f4da commit 7178839
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -424,10 +424,12 @@ private static String convertLevel( int level )
return "DEBUG";
case LOG_INFO:
return "INFO";
case LOG_ERROR:
return "ERROR";
case LOG_WARNING:
return "WARN";
case LOG_ERROR:
return "ERROR";
case 0:
return "OFF";
default:
return "DEBUG";
}
Expand Down

0 comments on commit 7178839

Please sign in to comment.