- Print timestamps like Java (with a "," sep'ing seconds and milliseconds)

- when parsing set log levels, accept "warn" as an alias for "warning".


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5393 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2008-09-25 20:58:46 +00:00
parent d48921acc2
commit 38ab9df44a
+3 -3
View File
@@ -57,7 +57,7 @@ public class Log
public static const INFO :int = 1;
public static const WARNING :int = 2;
public static const OFF :int = 3;
// if you add to this, update LEVEL_NAMES at the bottom...
// if you add to this, update LEVEL_NAMES and stringToLevel() at the bottom...
/**
* Retrieve a Log for the specified module.
@@ -264,7 +264,7 @@ public class Log
StringUtil.prepad(String(d.date), 2, "0") + " " +
StringUtil.prepad(String(d.hours), 2, "0") + ":" +
StringUtil.prepad(String(d.minutes), 2, "0") + ":" +
StringUtil.prepad(String(d.seconds), 2, "0") + ":" +
StringUtil.prepad(String(d.seconds), 2, "0") + "," +
StringUtil.prepad(String(d.milliseconds), 3, "0");
}
@@ -299,7 +299,7 @@ public class Log
default: // default to DEBUG
case "debug": return DEBUG;
case "info": return INFO;
case "warning": return WARNING;
case "warning": case "warn": return WARNING;
case "off": return OFF;
}
}