Improved the debug-mode logging a bit.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4384 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-09-27 23:54:09 +00:00
parent eda71de8d3
commit 0650d58006
@@ -66,13 +66,13 @@ public class ObjectInputStream
"Created mapping: (" + code + "): " + cname);
} else {
if (DEBUG) log.debug(
DEBUG_ID + "Read known code: (" + code + ")");
cmap = (_classMap[code] as ClassMapping);
if (null == cmap) {
throw new IOError("Read object for which we have no " +
"registered class metadata.");
"registered class metadata [code=" + code + "].");
}
if (DEBUG) log.debug(DEBUG_ID + "Read known code: (" +
code + ": " + cmap.classname + ")");
}
// log.debug("Creating object sleeve...");