org/sonews/daemon/CommandSelector.java
changeset 15 f2293e8566f5
parent 10 cb071b654cf7
child 21 4b2c8bedb094
     1.1 --- a/org/sonews/daemon/CommandSelector.java	Thu Aug 20 16:57:38 2009 +0200
     1.2 +++ b/org/sonews/daemon/CommandSelector.java	Thu Aug 20 18:41:21 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    }