diff --git a/src/main/java/org/slf4j/impl/BukkitPluginLoggerAdapter.java b/src/main/java/org/slf4j/impl/BukkitPluginLoggerAdapter.java index 76f37bf..7ba1b40 100644 --- a/src/main/java/org/slf4j/impl/BukkitPluginLoggerAdapter.java +++ b/src/main/java/org/slf4j/impl/BukkitPluginLoggerAdapter.java @@ -77,39 +77,38 @@ import org.yaml.snakeyaml.Yaml; *
* *slf4j.defaultLogLevel - Default log level for all SLF4Bukkit
+ * slf4j.log.a.b.c - Logging detail level for an
- * SLF4Bukkit logger instance in this plugin named "a.b.c". Right-side value
- * must be one of "trace", "debug", "info", "warn", or "error". When a logger
- * named "a.b.c" is initialized, its level is assigned from this property. If
- * unspecified or given any other value, the level of the nearest parent logger
- * will be used. If no parent logger level is set, then the value specified by
- * slf4j.defaultLogLevel for this plugin will be used.slf4j.showHeader -Set to true if you want to
- * output the {@code [SLF4J]} header. If unspecified or given any other value,
- * defaults to false.slf4j.showThreadName -Set to true if you want
- * to output the current thread name, wrapped in brackets. If unspecified or
- * given any other value, defaults to false.slf4j.showLogName - Set to true if you want the
- * logger instance name (wrapped in curly braces) to be included in output
- * messages. If unspecified or given any other value, defaults to
- * false. If this option is true, it overrides
- * slf4j.showShortLogName.slf4j.showShortLogName - Set to true if you
- * want the logger instance's short name (wrapped in curly braces) to be
- * included in output messages. The short name is equal to the full name with
- * every dot-separated portion of the full name (except the last portion)
- * truncated to its first character. If unspecified or given any other value,
- * defaults to true. This option is ignored if
- * slf4j.showLogName is true.