Answers:
通过系统属性
-Dorg.slf4j.simpleLogger.defaultLogLevel=debug
或simplelogger.properties
文件放在类路径中
有关详细信息,请参见http://www.slf4j.org/api/org/slf4j/impl/SimpleLogger.html
defaultLogLevel
)起作用。只是发现我在错误的文件夹中修改了该程序;-)并且defaultlog
不起作用。因此,尽管我已经接受了它,但您可能仍想编辑答案
这是一个示例simplelogger.properties
,您可以将其放置在类路径上(取消注释要使用的属性):
# SLF4J's SimpleLogger configuration file
# Simple implementation of Logger that sends all enabled log messages, for all defined loggers, to System.err.
# Default logging detail level for all instances of SimpleLogger.
# Must be one of ("trace", "debug", "info", "warn", or "error").
# If not specified, defaults to "info".
#org.slf4j.simpleLogger.defaultLogLevel=info
# Logging detail level for a SimpleLogger instance named "xxxxx".
# Must be one of ("trace", "debug", "info", "warn", or "error").
# If not specified, the default logging detail level is used.
#org.slf4j.simpleLogger.log.xxxxx=
# Set to true if you want the current date and time to be included in output messages.
# Default is false, and will output the number of milliseconds elapsed since startup.
#org.slf4j.simpleLogger.showDateTime=false
# The date and time format to be used in the output messages.
# The pattern describing the date and time format is the same that is used in java.text.SimpleDateFormat.
# If the format is not specified or is invalid, the default format is used.
# The default format is yyyy-MM-dd HH:mm:ss:SSS Z.
#org.slf4j.simpleLogger.dateTimeFormat=yyyy-MM-dd HH:mm:ss:SSS Z
# Set to true if you want to output the current thread name.
# Defaults to true.
#org.slf4j.simpleLogger.showThreadName=true
# Set to true if you want the Logger instance name to be included in output messages.
# Defaults to true.
#org.slf4j.simpleLogger.showLogName=true
# Set to true if you want the last component of the name to be included in output messages.
# Defaults to false.
#org.slf4j.simpleLogger.showShortLogName=false
org.slf4j.simpleLogger.logFile
-输出目标,可以是文件的路径,也可以是特殊值“ System.out”和“ System.err”。默认值为“ System.err”。参见slf4j.org/api/org/slf4j/impl/SimpleLogger.html
您可以通过设置system属性以编程方式更改它:
public class App {
public static void main(String[] args) {
System.setProperty(org.slf4j.impl.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "TRACE");
final org.slf4j.Logger log = LoggerFactory.getLogger(App.class);
log.trace("trace");
log.debug("debug");
log.info("info");
log.warn("warning");
log.error("error");
}
}
日志级别为错误>警告>信息>调试>跟踪。
请注意,一旦创建了记录器,就无法更改日志级别。如果需要动态更改日志记录级别,则可能需要将log4j与SLF4J 一起使用。
org.slf4j.impl.SimpleLogger
您的意思是实际的源代码而不是doc?
LOG_FILE_KEY
创建记录器后也不能更改该属性吗?
我注意到Eemuli表示创建日志后不能更改日志级别-尽管这可能是设计,但事实并非完全如此。
我遇到了这样一种情况:我正在使用登录到slf4j的库-并且在编写Maven Mojo插件时正在使用该库。
Maven使用了slf4j SimpleLogger的(被黑客入侵)版本,但是我无法获取我的插件代码来将其日志重新路由到我可以控制的log4j之类。
而且我无法更改Maven日志记录配置。
因此,为了减少一些嘈杂的信息消息,我发现可以在运行时使用SimpleLogger像这样使用反射。
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.spi.LocationAwareLogger;
try
{
Logger l = LoggerFactory.getLogger("full.classname.of.noisy.logger"); //This is actually a MavenSimpleLogger, but due to various classloader issues, can't work with the directly.
Field f = l.getClass().getSuperclass().getDeclaredField("currentLogLevel");
f.setAccessible(true);
f.set(l, LocationAwareLogger.WARN_INT);
}
catch (Exception e)
{
getLog().warn("Failed to reset the log level of " + loggerName + ", it will continue being noisy.", e);
}
当然,请注意,这不是一个非常稳定/可靠的解决方案...因为下次Maven员工更换记录仪时,它会中断。