From fccd94bce803c189727b3ce27cca8c6af74ab26b Mon Sep 17 00:00:00 2001
From: rjenkinsjr
Date: Thu, 31 Mar 2016 20:31:48 -0400
Subject: [PATCH] Use {@code} Javadoc syntax
---
.../slf4j/impl/BukkitPluginLoggerAdapter.java | 51 +++++++++----------
1 file changed, 25 insertions(+), 26 deletions(-)
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
+ * - {@code slf4j.defaultLogLevel} - Default log level for all SLF4Bukkit
* loggers in this plugin. Must be one of "trace", "debug", "info", "warn", or
* "error". If unspecified or given any other value, defaults to "info".
*
- * 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.
+ * - {@code 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
+ * {@code 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.
+ * - {@code slf4j.showHeader} -Set to {@code true} if you want to output the
+ * {@code [SLF4J]} header. If unspecified or given any other value, defaults to
+ * {@code 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.
+ * - {@code slf4j.showThreadName} -Set to {@code true} if you want to output
+ * the current thread name, wrapped in brackets. If unspecified or given any
+ * other value, defaults to {@code 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.
+ * - {@code slf4j.showLogName} - Set to {@code 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 {@code false}. If this
+ * option is {@code true}, it overrides {@code 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.
+ * - {@code slf4j.showShortLogName} - Set to {@code 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
+ * {@code true}. This option is ignored if {@code slf4j.showLogName} is
+ * {@code true}.
*
*
*