Ignore:
Timestamp:
08/27/12 15:53:25 (12 years ago)
Author:
sherbold
Message:
  • all usages of the Console tracing API now define log levels
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-utils/src/main/java/de/ugoe/cs/util/console/CommandExecuter.java

    r320 r639  
    44import java.util.ArrayList; 
    55import java.util.List; 
     6import java.util.logging.Level; 
    67 
    78/** 
     
    161162                } catch (InstantiationException e) { 
    162163                } catch (ClassCastException e) { 
    163                         Console.traceln(className + "found, but does not implement Command"); 
     164                        Console.traceln(Level.WARNING, className + "found, but does not implement Command"); 
    164165                } 
    165166                return cmd; 
Note: See TracChangeset for help on using the changeset viewer.