Changeset 2282 for trunk/java-utils/src


Ignore:
Timestamp:
08/02/19 14:25:00 (5 years ago)
Author:
pharms
Message:
 
File:
1 edited

Legend:

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

    r2281 r2282  
    250250                                            className); 
    251251                                    if (Command.class.isAssignableFrom(clazz)) { 
    252                                       commands.add((Command) clazz.getConstructor().newInstance()); 
     252                                        commands.add((Command) clazz.getConstructor().newInstance()); 
    253253                                    } 
    254254                                } 
     
    280280                                                loader.loadClass(commandPackage.getPackageName() + 
    281281                                                    "." + className); 
     282                                             
     283                                            Console.traceln(Level.WARNING, clazz.getName()); 
    282284                                            if (Command.class.isAssignableFrom(clazz)) { 
    283285                                                commands.add((Command) clazz.getConstructor().newInstance()); 
     
    286288                                    } 
    287289                                    while (entry != null); 
    288                                 } 
    289                                 catch (Exception e) { 
    290                                     e.printStackTrace(); 
    291                                     Console 
    292                                         .traceln(Level.WARNING, 
    293                                                  "could not read contents of " + "jar " + jarFile); 
    294290                                } 
    295291                                finally { 
Note: See TracChangeset for help on using the changeset viewer.