e.printStackTrace();
}
new Thread() {
public void run() {
MonitorLog monitorLog = MonitorLogFactory
.getLogger("irisPluginCache");
while (true) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("input data.....................");
monitorLog.log(new String(""));
}
}
}.start();
}