@@ -39,7 +39,7 @@ public void uncaughtException(Thread th, Throwable tr) {
3939 }
4040 });
4141
42- AdjustFactory .getLogger ().verbose ("Thread %s created" , thread .getName ());
42+ // AdjustFactory.getLogger().verbose("Thread %s created", thread.getName());
4343 return thread ;
4444 }
4545 }, new RejectedExecutionHandler () { // Logs rejected runnables rejected from the entering the pool
@@ -65,13 +65,13 @@ public void shutdownNow() {
6565 }
6666
6767 public ScheduledFuture <?> scheduleWithFixedDelay (Runnable command , long initialDelay , long delay , TimeUnit unit ) {
68- AdjustFactory .getLogger ().verbose ("CustomScheduledExecutor scheduleWithFixedDelay from %s source, with %d delay and %d initial delay" ,
69- source , delay , initialDelay );
68+ // AdjustFactory.getLogger().verbose("CustomScheduledExecutor scheduleWithFixedDelay from %s source, with %d delay and %d initial delay",
69+ // source, delay, initialDelay);
7070 return executor .scheduleWithFixedDelay (command , initialDelay , delay , unit );
7171 }
7272
7373 public ScheduledFuture <?> schedule (Runnable command , long delay , TimeUnit unit ) {
74- AdjustFactory .getLogger ().verbose ("CustomScheduledExecutor schedule from %s source, with %d delay" , source , delay );
74+ // AdjustFactory.getLogger().verbose("CustomScheduledExecutor schedule from %s source, with %d delay", source, delay);
7575 return executor .schedule (command , delay , unit );
7676 }
7777
0 commit comments