1.1 --- a/org/sonews/daemon/CommandSelector.java Wed Aug 12 17:25:46 2009 +0200
1.2 +++ b/org/sonews/daemon/CommandSelector.java Mon Aug 24 13:00:05 2009 +0200
1.3 @@ -73,15 +73,15 @@
1.4 }
1.5 catch(ClassNotFoundException ex)
1.6 {
1.7 - Log.msg("Could not load command class: " + ex, false);
1.8 + Log.get().warning("Could not load command class: " + ex);
1.9 }
1.10 catch(InstantiationException ex)
1.11 {
1.12 - Log.msg("Could not instantiate command class: " + ex, false);
1.13 + Log.get().severe("Could not instantiate command class: " + ex);
1.14 }
1.15 catch(IllegalAccessException ex)
1.16 {
1.17 - Log.msg("Could not access command class: " + ex, false);
1.18 + Log.get().severe("Could not access command class: " + ex);
1.19 }
1.20 }
1.21 }