We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36f6919 commit f462e49Copy full SHA for f462e49
src/test/java/SysoutTest.kt
@@ -0,0 +1,25 @@
1
+
2
+import org.hydev.logger.HyLoggerConfig
3
+import java.lang.System.err
4
5
+/**
6
+ * TODO: Write a description for this class!
7
+ *
8
+ * @author HyDEV Team (https://github.com/HyDevelop)
9
+ * @author Hykilpikonna (https://github.com/hykilpikonna)
10
+ * @author Vanilla (https://github.com/VergeDX)
11
+ * @since 2020-07-31 16:59
12
+ */
13
+fun main(args: Array<String>)
14
+{
15
+ println("安装到 Sysout 之前w")
16
17
+ // 安装到 Sysout
18
+ HyLoggerConfig.installSysOut()
19
20
+ println("安装到 Sysout 之后w")
21
+ Thread.sleep(50)
22
23
+ err.println("丢的异常也可以哦w")
24
+ val i = 1/0
25
+}
0 commit comments