heheng
2025-12-09 e38612bd0c14b89f393a18ebcee0bc5028f8889d
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() + "]";
    }
}