2003/12/30 21:30:01
[org.ibex.core.git] / src / org / xwt / util / Log.java
index 37bfd5c..bb690b2 100644 (file)
@@ -62,13 +62,13 @@ public class Log {
         if (firstMessage && !logDates) {
             firstMessage = false;
             System.err.println(color(GREEN, false, "==========================================================================="));
-            String incolor = color ? "in " +
+            diag(Log.class, "Logging enabled at " + new java.util.Date());
+            if (color) diag(Log.class, "logging messages in " +
                 color(BLUE, true, "c") +
                 color(RED, true, "o") +
                 color(CYAN, true, "l") +
                 color(GREEN, true, "o") +
-                color(PURPLE, true, "r") + " " : "";
-            diag(Log.class, "Logging enabled at " + new java.util.Date() + " " + incolor);
+                color(PURPLE, true, "r"));
         }
 
         String classname;
@@ -84,6 +84,7 @@ public class Log {
         while (classname.length() < (logDates ? 14 : 20)) classname = " " + classname;
         classname = classname + (classname.trim().length() == 0 ? "  " : ": ");
         classname = color(GRAY, true, classname);
+        classname = classname.replace('$', '.');
 
         if (logDates) {
             Date d = new Date();
@@ -108,7 +109,7 @@ public class Log {
             try {
                 String m = "";
                 while((s = br.readLine()) != null) m += s + "\n";
-                log(o, m, level);
+                log(o, m.substring(0, m.length() - 1), level);
             } catch (IOException e) {
                 System.err.println(color(RED, true, "Logger: exception thrown by ByteArrayInputStream -- this should not happen"));
             }