Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我昨天写了我的第一个自定义屏幕,现在我需要查看一些信息。我查看了 api,但没有找到任何看起来像记录器类的类。是否可以将自定义信息记录到installation.log 文件中,或者是否需要使用log4j 创建单独的日志文件?
亲切的问候哈迪
调用其中之一
Util.logInfo(null, "My message"); Util.logError(null, "My error");
或者,如果你有一个 Throwable t
Util.log(t);
该类Util在com.install4.api包中,并在所有脚本中自动导入。
Util
com.install4.api