*** empty log message ***

This commit is contained in:
Caspian Rychlik-Prince 2003-12-20 22:28:00 +00:00
parent ad28763347
commit 0730597b52
1 changed files with 3 additions and 2 deletions

View File

@ -106,8 +106,9 @@ public final class Sys {
* is true. * is true.
*/ */
public static void log(String msg) { public static void log(String msg) {
if (Sys.DEBUG) if (Sys.DEBUG) {
System.err.println(msg); System.err.println(msg);
}
} }
/** /**
@ -133,7 +134,7 @@ public final class Sys {
} }
/** /**
* Set the debug level of the native library * Set the debug level of the native library
*/ */
private static native void setDebug(boolean debug); private static native void setDebug(boolean debug);