From 1ac09300a727740b5bedcace78fea3c28ee01669 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 16 Jun 2005 18:24:55 +0000 Subject: [PATCH] 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 --- src/java/com/threerings/puzzle/drop/data/DropBoard.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/puzzle/drop/data/DropBoard.java b/src/java/com/threerings/puzzle/drop/data/DropBoard.java index 5178a07df..deaf19635 100644 --- a/src/java/com/threerings/puzzle/drop/data/DropBoard.java +++ b/src/java/com/threerings/puzzle/drop/data/DropBoard.java @@ -604,7 +604,7 @@ public class DropBoard extends Board } buf.append(StringUtils.rightPad(str, padwid)); } - Log.warning(buf.toString()); + System.err.println(buf.toString()); } }