diff -r 6fceb66e1ad7 -r 2fdc9cc89502 org/sonews/util/Log.java --- a/org/sonews/util/Log.java Fri Jun 26 16:48:50 2009 +0200 +++ b/org/sonews/util/Log.java Wed Jul 22 14:04:05 2009 +0200 @@ -18,8 +18,8 @@ package org.sonews.util; -import org.sonews.daemon.*; import java.util.Date; +import org.sonews.config.Config; /** * Provides logging and debugging methods. @@ -31,10 +31,10 @@ public static boolean isDebug() { - // We must use BootstrapConfig here otherwise we come + // We must use FileConfig here otherwise we come // into hell's kittchen when using the Logger within the // Database class. - return BootstrapConfig.getInstance().get(BootstrapConfig.DEBUG, false); + return Config.inst().get(Config.DEBUG, false); } /**