From ccdb705e7e37fea816957f6907e30ef50e454615 Mon Sep 17 00:00:00 2001 From: johnniang Date: Sat, 16 Nov 2019 21:07:54 +0800 Subject: [PATCH] Change some warning log to debug level --- .../java/run/halo/app/service/base/AbstractCrudService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/run/halo/app/service/base/AbstractCrudService.java b/src/main/java/run/halo/app/service/base/AbstractCrudService.java index 5274a964d..8bdfce4be 100644 --- a/src/main/java/run/halo/app/service/base/AbstractCrudService.java +++ b/src/main/java/run/halo/app/service/base/AbstractCrudService.java @@ -290,7 +290,7 @@ public abstract class AbstractCrudService implements CrudService ids) { if (CollectionUtils.isEmpty(ids)) { - log.warn(domainName + " id collection is empty"); + log.debug(domainName + " id collection is empty"); return; } @@ -305,7 +305,7 @@ public abstract class AbstractCrudService implements CrudService domains) { if (CollectionUtils.isEmpty(domains)) { - log.warn(domainName + " collection is empty"); + log.debug(domainName + " collection is empty"); return; } repository.deleteInBatch(domains);