diff -r cb071b654cf7 -r f2293e8566f5 org/sonews/daemon/CommandSelector.java --- a/org/sonews/daemon/CommandSelector.java Wed Aug 12 17:25:46 2009 +0200 +++ b/org/sonews/daemon/CommandSelector.java Thu Aug 20 18:41:21 2009 +0200 @@ -73,15 +73,15 @@ } catch(ClassNotFoundException ex) { - Log.msg("Could not load command class: " + ex, false); + Log.get().warning("Could not load command class: " + ex); } catch(InstantiationException ex) { - Log.msg("Could not instantiate command class: " + ex, false); + Log.get().severe("Could not instantiate command class: " + ex); } catch(IllegalAccessException ex) { - Log.msg("Could not access command class: " + ex, false); + Log.get().severe("Could not access command class: " + ex); } } }