Remove debug log

This commit is contained in:
Albumen Kevin 2022-12-15 17:27:02 +08:00
parent 7ec01c0941
commit cbb5b5a7c3
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public class GlobalResourcesRepository {
synchronized (this) {
if (executorService == null || executorService.isShutdown()) {
if (logger.isInfoEnabled()) {
logger.error("Creating global shared handler ...", new RuntimeException());
logger.error("Creating global shared handler ...");
}
executorService = Executors.newCachedThreadPool(new NamedThreadFactory("Dubbo-global-shared-handler", true));
}