dashboard
repositories
filestore
activity
search
login
main
/
hazmat_manage
危化品全生命周期管理后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改
“djh”
2025-08-12
c04f2d4a58bd72449b2212ed2f8b0c3ac9ec96be
[hazmat_manage.git]
/
hazmat-common
/
src
/
main
/
java
/
com
/
gkhy
/
hazmat
/
common
/
utils
/
LogUtils.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.gkhy.hazmat.common.utils;
/**
* 处理并记录日志文件
*
*/
public class LogUtils
{
public static String getBlock(Object msg)
{
if (msg == null)
{
msg = "";
}
return "[" + msg.toString() + "]";
}
}