0

Publishing site for version 0.1.3

This commit is contained in:
Ronald J. Jenkins Jr
2016-04-02 04:57:36 +00:00
parent 4f9c6e65fa
commit 0daf61ad7f
59 changed files with 3167 additions and 1652 deletions

View File

@@ -1,13 +1,13 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-03-31
| Generated by Apache Maven Doxia at 2016-04-02
| Rendered using Apache Maven Fluido Skin 1.4
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="Date-Revision-yyyymmdd" content="20160331" />
<meta name="Date-Revision-yyyymmdd" content="20160402" />
<meta http-equiv="Content-Language" content="en" />
<title>SLF4Bukkit &#x2013; SLF4Bukkit</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-1.4.min.css" />
@@ -122,10 +122,10 @@
<ul class="breadcrumb">
<li id="publishDate">Last Published: 2016-03-31
<li id="publishDate">Last Published: 2016-04-02
<span class="divider">|</span>
</li>
<li id="projectVersion">Version: 0.1.2
<li id="projectVersion">Version: 0.1.3
</li>
@@ -198,12 +198,12 @@
<p>Basic documentation of all available options is shown below. Your plugin likely has additional information regarding what portions of the plugin&#x2019;s logging facilities are configurable.</p>
<div class="source">
<div class="source"><pre class="prettyprint linenums"># This is the section within which all SLF4Bukkit configuration options is
<div class="source"><pre class="prettyprint linenums"># This is the section within which all SLF4Bukkit configuration options are
# contained. Its name is the same regardless of what the plugin's name is.
slf4j:
# Default log level for all plugin logging activity. Possible values are
# &quot;trace&quot;, &quot;debug&quot;, &quot;info&quot;, &quot;warn&quot;, or &quot;error&quot;.
# &quot;trace&quot;, &quot;debug&quot;, &quot;info&quot;, &quot;warn&quot;, or &quot;error&quot; (case-insensitive).
#
# If the plugin logs any &quot;trace&quot; or &quot;debug&quot; messages, they will be logged by
# the plugin as &quot;info&quot; severity, but you'll see the actual severity in the
@@ -217,12 +217,6 @@ slf4j:
# If not specified or given an invalid value, defaults to &quot;false&quot;.
showHeader: false
# Shows the name of the logging thread, wrapped in brackets. You probably
# don't want this information unless you're helping troubleshoot a plugin.
#
# If not specified or given an invalid value, defaults to &quot;false&quot;.
showThreadName: false
# Shows the full logger name (e.g. &quot;info.ronjenkins.bukkit.MyPlugin&quot;),
# wrapped in curly braces.
#
@@ -239,12 +233,61 @@ slf4j:
# &quot;slf4j.showLogName&quot; is true, this option is ignored.
showShortLogName: true
# Shows the name of the logging thread, wrapped in brackets. You probably
# don't want this information unless you're helping troubleshoot a plugin.
#
# If not specified or given an invalid value, defaults to &quot;false&quot;.
showThreadName: false
# This section controls default colors for logging levels. Each entry in this
# section maps one of SLF4J's logging levels to one of SLF4Bukkit's
# ColorMarker values. The possible keys (levels) in this section are the
# possible values for the &quot;slf4j.defaultLogLevel&quot; property.
#
# If either the key (level) name or the value (ColorMarker) name does not
# match one of the possible values, that config entry is ignored. Keys and
# values are compared in a case-insensitive fashion.
#
# The values in the plugin config are applied on top of the following
# hardcoded default values:
# error: RED
# warn: YELLOW
# info: NONE
# debug: NONE
# trace: NONE
#
# The ColorMarker values are:
# BLACK
# DARK_BLUE
# DARK_GREEN
# DARK_AQUA
# DARK_RED
# DARK_PURPLE
# GOLD
# GRAY
# DARK_GRAY
# BLUE
# GREEN
# AQUA
# RED
# LIGHT_PURPLE
# YELLOW
# WHITE
# NONE (default console color)
colors:
error: RED
warn: YELLOW
info: NONE
debug: NONE
trace: NONE
# This section controls logging levels for individual loggers.
log:
# For each element in this section, the key is the full logger name and the
# value is the logging level for that logger. Possible logging levels are
# the same as what's available for the &quot;slf4j.defaultLogLevel&quot; property.
# the same as what's available for the &quot;slf4j.defaultLogLevel&quot; property
# (case-insensitive).
#
# The documentation for your plugin should elaborate on what logger names
# are available. As a general rule, you won't need to specify levels for