描述:日志输出管理 作者:蒋庆意 日期时间:2021/1/18 11:36 cocoasjiang@foxmail.com
| 8 | * cocoasjiang@foxmail.com |
| 9 | */ |
| 10 | public class LogUtils { |
| 11 | |
| 12 | // 打印信息 |
| 13 | public static void print(String msg){ |
| 14 | System.out.print(msg + " "); |
| 15 | } |
| 16 | |
| 17 | // 打印信息(自动换行) |
| 18 | public static void println(String msg){ |
| 19 | System.out.println(msg); |
| 20 | } |
| 21 | |
| 22 | // 打印错误信息 |
| 23 | public static void error(String msg){ |
| 24 | System.err.println(msg); |
| 25 | } |
| 26 | |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected