From 7ab2c542dac574ed9417ed276c206381f449179c Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 25 Sep 2008 21:04:52 +0000 Subject: [PATCH] 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 --- src/as/com/threerings/util/Log.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/util/Log.as b/src/as/com/threerings/util/Log.as index fdac96009..a14e98095 100644 --- a/src/as/com/threerings/util/Log.as +++ b/src/as/com/threerings/util/Log.as @@ -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 ]; } }