英文:
Setting log level for JobRunr
问题
我正在使用JobRunr框架,但无法设置日志级别,默认为"DEBUG"。
进行了谷歌研究,但没有找到解决方法。
这是我初始化JobRunr的方式:
JobRunr.configure().useStorageProvider(new InMemoryStorageProvider()).useBackgroundJobServer().initialize();
英文:
I am using the JobRunr framework, but cannot set the log level, which is "DEBUG" by default.
Did Google research, but to no avail.
This is how I initialize JobRunr:
JobRunr.configure().useStorageProvider(new InMemoryStorageProvider()).useBackgroundJobServer().initialize();
答案1
得分: 0
JobRunr使用您使用SLF4J设置的默认日志级别。
如果您添加SLF4J实现(例如logback),您可以使用logback.xml或通过spring boot进行配置。
英文:
JobRunr uses the default log level you setup using SLF4J.
If you add a SLF4J implementation (e.g. logback), you can configure everything using logback.xml or via spring boot.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论