if ( isLoggingConfigSet ) {
return;
}
DebugPrinter dbp = new DebugPrinter(2);
String filename = (String) props.get("file");
dbp.setFile(filename);
String vstr = (String) props.get("verbose");
boolean verbose = Boolean.valueOf(vstr).booleanValue();
Hashtable debugState = connection.getDebugState(verbose);
debugState.put("DebugCmd", props);
dbp.setHashtable(debugState);
dbp.println();
dbp.close();
} catch (Throwable e) {
ExceptionHandler.logCaughtException(e);
e.printStackTrace();