11:20:59,193 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml]
时间: 2024-04-07 16:31:06 浏览: 219
这是一条日志信息,它表示在默认的日志记录器上下文中没有找到名为logback-test.xml的资源文件。Logback是一个Java日志框架,用于在应用程序中记录日志。如果应用程序需要使用自定义的日志配置,可以在类路径中提供一个名为logback.xml的文件。如果没有提供,Logback将使用默认的配置。这条日志信息表明,Logback尝试加载一个名为logback-test.xml的配置文件,但找不到该文件,因此将使用默认配置。
相关问题
Ubuntu系统输入./cli start启动原神3.2服务端后加载中出现ERROR in ch.qos.logback.core.joran.action.AppenderRefAction - Could not find an appender named [SERVEREVENT]. Did you define it below instead of above in the configuration file? 16:19:45,822 |-ERROR in ch.qos.logback.core.joran.action.AppenderRefAction - See http://logback.qos.ch/codes.html#appender_order for more details. 16:19:45,822 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration. 16:19:45,823 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@4f970963 - Registering current configuration as safe fallback point 16:19:46 <ERROR:DataLoader> We were unable to locate your default data files. 16:19:46 <ERROR:Crypto> An error occurred while loading keys. java.lang.NullPointerException: null at java.base/java.util.Objects.requireNonNull(Objects.java:209) at emu.grasscutter.utils.Crypto.loadKeys(Crypto.java:43) at emu.grasscutter.Grasscutter.main(Grasscutter.java:81)
这个错误信息涉及到日志记录和数据加载。首先,关于日志记录,错误信息指出无法找到名为 [SERVEREVENT] 的 appender。这可能是因为在配置文件中定义的 appender 顺序不正确,你可以参考错误信息中提供的链接来了解更多信息。其次,关于数据加载,错误信息指出无法定位默认数据文件。这可能是由于服务端无法找到数据文件或者文件路径不正确导致的。你可以检查服务端程序的配置文件和数据文件路径是否正确,或者尝试重新下载和安装数据文件。
-ERROR in ch.qos.logback.core.joran.spi.Interpreter@80:28 - no applicable action for [root], current ElementPath is [[configuration][springProfile][root]] 17:09:33,700 |-ERROR in ch.qos.logback.core.joran.spi.Interpreter@81:46 - no applicable action for [appender-ref], current ElementPath is [[configuration][springProfile][root][appender-ref]] 17:09:33,700 |-ERROR in ch.qos.logback.core.joran.spi.Interpreter@82:47 - no applicable action for [appender-ref], current ElementPath is [[configuration][springProfile][root][appender-ref]]
这些错误提示表明 Logback 配置文件中出现了无法识别的配置项。具体来说,[root] 表示没有找到 root 节点的配置项,[appender-ref] 表示没有找到 appender-ref 节点的配置项。可能的原因是您的 Logback 配置文件中存在语法错误或者配置项不完整。
您可以仔细检查 Logback 配置文件中的语法,确保每个节点和属性都符合 Logback 的规范。您还可以参考 Logback 官方文档或者其他 Logback 配置文件的示例进行修复。例如,对于 [root] 节点,您可以在配置文件中添加类似如下的代码:
```
<root level="DEBUG">
<appender-ref ref="STDOUT"/>
</root>
```
其中,level 属性用来设置日志级别,ref 属性用来引用一个已经定义的 appender。对于 [appender-ref] 节点,您需要确保已经定义了对应的 appender。
阅读全文