From 24bd78c70268a4faeb7abafdf1038a6a824514c7 Mon Sep 17 00:00:00 2001 From: mx <1289317512@qq.com> Date: Wed, 9 Oct 2024 09:55:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4llog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/translation/core/impl/DictTypeTranslationImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pusong-common/pusong-common-translation/src/main/java/com/pusong/common/translation/core/impl/DictTypeTranslationImpl.java b/pusong-common/pusong-common-translation/src/main/java/com/pusong/common/translation/core/impl/DictTypeTranslationImpl.java index 62c3a38..2ac0cd4 100644 --- a/pusong-common/pusong-common-translation/src/main/java/com/pusong/common/translation/core/impl/DictTypeTranslationImpl.java +++ b/pusong-common/pusong-common-translation/src/main/java/com/pusong/common/translation/core/impl/DictTypeTranslationImpl.java @@ -23,7 +23,7 @@ public class DictTypeTranslationImpl implements TranslationInterface { @Override public String translation(Object key, String other) { - logger.info("key = {}, other = {}", key, other); +// logger.info("key = {}, other = {}", key, other); if (key instanceof String dictValue && StringUtils.isNotBlank(other)) { String ret = dictService.getDictLabel(other, dictValue); return StringUtils.isBlank(ret)? dictValue:ret;