Merge pull request #12997 from press0/master

fix getLogger class name
This commit is contained in:
Loredana Crusoveanu 2022-12-22 15:37:35 +02:00 committed by GitHub
commit 76f06cdd9c
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import org.slf4j.LoggerFactory;
public class RunnableCompletionCheckerWithThreadPoolExecutor {
private static final Logger LOGGER = LoggerFactory.getLogger(RunnableCompletionCheckerWithCompletableFuture.class);
private static final Logger LOGGER = LoggerFactory.getLogger(RunnableCompletionCheckerWithThreadPoolExecutor.class);
private static final int NUMBER_OF_RUNNABLES = 5;
private static final int PAUSE_MILLIS = 1000;
private static final int NUMBER_OF_THREADS = 5;