typo
This commit is contained in:
@@ -30,14 +30,14 @@ public class Log {
|
||||
|
||||
public void info(String message)
|
||||
{
|
||||
if ( Log.level >= 0 ) {
|
||||
if ( Log.level >= INFO ) {
|
||||
writeLog("[INFO]:" + message);
|
||||
}
|
||||
}
|
||||
|
||||
public void debug(String message)
|
||||
{
|
||||
if ( Log.level >= 1 ) {
|
||||
if ( Log.level >= DEBUG ) {
|
||||
writeLog("[DEBUG]:" + message);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user