Stop printing square brackets around the log level. Be more like our Java logging.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5394 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2008-09-25 21:04:52 +00:00
parent 38ab9df44a
commit 7ab2c542da
+2 -2
View File
@@ -316,7 +316,7 @@ public class Log
/** The configured log levels. */
protected static var _setLevels :Object = { "": DEBUG }; // global: debug
/** The names of each level. The last one isn't used, it corresponds with OFF. */
protected static const LEVEL_NAMES :Array = [ "[debug]", "[INFO]", "[WARNING]", false ];
/** The outputted names of each level. The last one isn't used, it corresponds with OFF. */
protected static const LEVEL_NAMES :Array = [ "debug", "INFO", "WARNING", false ];
}
}