删除llog

This commit is contained in:
mx 2024-10-09 09:55:40 +08:00
parent 43ba3088dc
commit 24bd78c702

View File

@ -23,7 +23,7 @@ public class DictTypeTranslationImpl implements TranslationInterface<String> {
@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;