LogUtils.java 274 B

123456789101112131415
  1. package com.ruoyi.common.utils;
  2. /**
  3. * 处理并记录日志文件
  4. *
  5. * @author ruoyi
  6. */
  7. public class LogUtils {
  8. public static String getBlock(Object msg) {
  9. if (msg == null) {
  10. msg = "";
  11. }
  12. return "[" + msg.toString() + "]";
  13. }
  14. }