MCPcopy Create free account
hub / github.com/CharlieJiang/SourceCodeDocxGenerator / LogUtils

Class LogUtils

src/main/java/cocoas/LogUtils.java:10–27  ·  view source on GitHub ↗

描述:日志输出管理 作者:蒋庆意 日期时间:2021/1/18 11:36 cocoasjiang@foxmail.com

Source from the content-addressed store, hash-verified

8 * cocoasjiang@foxmail.com
9 */
10public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected