Log board dumps via System.err so that only the main warning message is

prefixed with a timestamp and identifying information. This way the log
processing scripts will treat the dump as an extension of the previous
warning message and not new warnings of their own.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3602 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-06-16 18:24:55 +00:00
parent 1f9d28aa59
commit 1ac09300a7
@@ -604,7 +604,7 @@ public class DropBoard extends Board
}
buf.append(StringUtils.rightPad(str, padwid));
}
Log.warning(buf.toString());
System.err.println(buf.toString());
}
}