Publishing site for version 0.1.2
This commit is contained in:
45
index.html
45
index.html
@@ -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 – SLF4Bukkit for Server Administrators</title>
|
||||
<title>SLF4Bukkit – 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’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’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’s logging facilities are configurable.</p>
|
||||
|
||||
@@ -207,30 +209,34 @@ slf4j:
|
||||
# the plugin as "info" 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 "info".
|
||||
# If not specified or given an invalid value, defaults to "info".
|
||||
defaultLogLevel: info
|
||||
|
||||
# Shows an "[SLF4J]" header for every message logged through SLF4Bukkit.
|
||||
#
|
||||
# If not specified, default is "false".
|
||||
# If not specified or given an invalid value, defaults to "false".
|
||||
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 "false".
|
||||
# If not specified or given an invalid value, defaults to "false".
|
||||
showThreadName: false
|
||||
|
||||
# Shows the full logger name (e.g. "info.ronjenkins.bukkit.MyPlugin").
|
||||
# Shows the full logger name (e.g. "info.ronjenkins.bukkit.MyPlugin"),
|
||||
# wrapped in curly braces.
|
||||
#
|
||||
# If not specified, default is "false".
|
||||
# If not specified or given an invalid value, defaults to "false". If true,
|
||||
# this overrides "slf4j.showShortLogName".
|
||||
showLogName: false
|
||||
|
||||
# Shows the short logger name, which is the short Java package name format
|
||||
# (e.g. a logger named "info.ronjenkins.bukkit.MyPlugin" would have a short
|
||||
# name of "i.r.b.MyPlugin".
|
||||
# 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
|
||||
# "info.ronjenkins.bukkit.MyPlugin" would have a short name of
|
||||
# "i.r.b.MyPlugin").
|
||||
#
|
||||
# If not specified, default is "true".
|
||||
# If not specified or given an invalid value, defaults to "true". If
|
||||
# "slf4j.showLogName" 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 "slf4j.defaultLogLevel" is used.
|
||||
info.ronjenkins.bukkit.MyPlugin: debug
|
||||
info.ronjenkins.SomeOtherLogger: warn
|
||||
</pre></div></div></div>
|
||||
|
||||
Reference in New Issue
Block a user