Tabs -> spaces

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4742 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2007-06-26 00:07:36 +00:00
parent 8aadcfe757
commit 3b701ef57d
10 changed files with 55 additions and 55 deletions
+4 -4
View File
@@ -35,24 +35,24 @@ public class Log
/** Convenience function. */
public static void debug (String message)
{
log.fine(message);
log.fine(message);
}
/** Convenience function. */
public static void info (String message)
{
log.info(message);
log.info(message);
}
/** Convenience function. */
public static void warning (String message)
{
log.warning(message);
log.warning(message);
}
/** Convenience function. */
public static void logStackTrace (Throwable t)
{
log.log(Level.WARNING, t.getMessage(), t);
log.log(Level.WARNING, t.getMessage(), t);
}
}