0

Publishing site for version 0.1.2

This commit is contained in:
Ronald J. Jenkins Jr
2016-04-01 03:41:19 +00:00
parent 20fa047d90
commit 4f9c6e65fa
55 changed files with 4550 additions and 1419 deletions

View File

@@ -1,15 +1,15 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2016-03-29
| Generated by Apache Maven Doxia at 2016-03-31
| 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="20160329" />
<meta name="Date-Revision-yyyymmdd" content="20160331" />
<meta http-equiv="Content-Language" content="en" />
<title>SLF4Bukkit &#x2013; SLF4Bukkit for Server Administrators</title>
<title>SLF4Bukkit &#x2013; SLF4Bukkit</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-1.4.min.css" />
<link rel="stylesheet" href="./css/site.css" />
<link rel="stylesheet" href="./css/print.css" media="print" />
@@ -122,10 +122,10 @@
<ul class="breadcrumb">
<li id="publishDate">Last Published: 2016-03-29
<li id="publishDate">Last Published: 2016-03-31
<span class="divider">|</span>
</li>
<li id="projectVersion">Version: 0.1.1
<li id="projectVersion">Version: 0.1.2
</li>
@@ -190,8 +190,10 @@
<div id="bodyColumn" class="span10" >
<div class="section">
<h2><a name="SLF4Bukkit_for_Server_Administrators"></a>SLF4Bukkit for Server Administrators</h2>
<h1>SLF4Bukkit</h1>
<p>SLF4Bukkit is an SLF4J binding that uses Bukkit&#x2019;s plugin logging system.</p>
<div class="section">
<h2><a name="For_Server_Administrators"></a>For Server Administrators</h2>
<p>If you were linked here by documentation for a plugin that you&#x2019;re using on your Bukkit/Spigot server, you can control the logging behavior of the plugin using its <tt>config.yml</tt> file.</p>
<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>
@@ -207,30 +209,34 @@ slf4j:
# the plugin as &quot;info&quot; severity, but you'll see the actual severity in the
# log message. This is due to a Bukkit logging limitation.
#
# If not specified, default is &quot;info&quot;.
# If not specified or given an invalid value, defaults to &quot;info&quot;.
defaultLogLevel: info
# Shows an &quot;[SLF4J]&quot; header for every message logged through SLF4Bukkit.
#
# If not specified, default is &quot;false&quot;.
# If not specified or given an invalid value, defaults to &quot;false&quot;.
showHeader: false
# Shows the name of each thread that is logging via SLF4Bukkit. You probably
# 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, default is &quot;false&quot;.
# 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;).
# Shows the full logger name (e.g. &quot;info.ronjenkins.bukkit.MyPlugin&quot;),
# wrapped in curly braces.
#
# If not specified, default is &quot;false&quot;.
# If not specified or given an invalid value, defaults to &quot;false&quot;. If true,
# this overrides &quot;slf4j.showShortLogName&quot;.
showLogName: false
# Shows the short logger name, which is the short Java package name format
# (e.g. a logger named &quot;info.ronjenkins.bukkit.MyPlugin&quot; would have a short
# name of &quot;i.r.b.MyPlugin&quot;.
# Shows the short logger name, wrapped in curly braces. The short logger name
# is the short Java package name format (e.g. a logger named
# &quot;info.ronjenkins.bukkit.MyPlugin&quot; would have a short name of
# &quot;i.r.b.MyPlugin&quot;).
#
# If not specified, default is &quot;true&quot;.
# If not specified or given an invalid value, defaults to &quot;true&quot;. If
# &quot;slf4j.showLogName&quot; is true, this option is ignored.
showShortLogName: true
# This section controls logging levels for individual loggers.
@@ -243,6 +249,11 @@ slf4j:
# 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
# specific loggers.
#
# For any logger, if the level specified here is invalid, or if the level is
# not specified at all, the level of the closest parent logger is used. If
# none of the logger's ancestors have a valid level defined, the
# value of &quot;slf4j.defaultLogLevel&quot; is used.
info.ronjenkins.bukkit.MyPlugin: debug
info.ronjenkins.SomeOtherLogger: warn
</pre></div></div></div>