0

Use {@code} Javadoc syntax

This commit is contained in:
rjenkinsjr
2016-03-31 20:31:48 -04:00
parent d871567f6a
commit fccd94bce8

View File

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