Thread.sleep(sleep_time);
t.start();
MailJdbc.logAct.logMsg(LogFile.INFO + "Started: " + t.getName() + " with 150000 sleep time");
userThreads.add(t);
//Starting Backup Thread
t = new Backup("Backup Thread");
t.start();
MailJdbc.logAct.logMsg(LogFile.INFO + "Started: " + t.getName());
userThreads.add(t);
sleep_time = (int) (Math.random() * 15000);
Thread.sleep(sleep_time);