dashboard
repositories
filestore
activity
search
login
main
/
multi_system
多体系后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Merge branch 'master' of https://sinanoaq.cn:8888/r/multi_system
“djh”
2025-07-01
5ca4ab349909030e77354832287f2d6a2c80e119
[multi_system.git]
/
multi-common
/
src
/
main
/
java
/
com
/
gkhy
/
exam
/
common
/
utils
/
LogUtils.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.gkhy.exam.common.utils;
/**
* 处理并记录日志文件
*
*/
public class LogUtils
{
public static String getBlock(Object msg)
{
if (msg == null)
{
msg = "";
}
return "[" + msg.toString() + "]";
}
}