spring boot 2.5.13 shiro 1.9.0 等等

This commit is contained in:
thinkgem
2022-05-05 11:21:20 +08:00
parent 2633d6b06d
commit c5f1feafae
7 changed files with 38 additions and 92 deletions

View File

@@ -171,7 +171,7 @@ public class ObjectUtils extends org.apache.commons.lang3.ObjectUtils {
return ObjectUtils.serializeFst(object);
}
} catch (Exception e) {
logger.error("serialize", e.getMessage());
logger.error("serialize: {}", e.getMessage(), e);
}
return null;
}
@@ -189,7 +189,7 @@ public class ObjectUtils extends org.apache.commons.lang3.ObjectUtils {
return ObjectUtils.unserializeFst(bytes);
}
} catch (Exception e) {
logger.error("unserialize", e.getMessage());
logger.error("unserialize: {}", e.getMessage());
}
return null;
}