log4r 1.1.6 → 1.1.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README +3 -3
- data/Rakefile +2 -2
- data/doc/rdoc/Log4r.html +519 -0
- data/doc/rdoc/Log4r/BasicFormatter.html +388 -0
- data/doc/rdoc/Log4r/ConfigError.html +225 -0
- data/doc/rdoc/Log4r/Configurator.html +1068 -0
- data/doc/rdoc/Log4r/DateFileOutputter.html +479 -0
- data/doc/rdoc/Log4r/DefaultFormatter.html +223 -0
- data/doc/rdoc/Log4r/EmailOutputter.html +654 -0
- data/doc/rdoc/Log4r/FileOutputter.html +346 -0
- data/doc/rdoc/Log4r/Formatter.html +309 -0
- data/doc/rdoc/Log4r/GDC.html +346 -0
- data/doc/rdoc/Log4r/GDC_rb.html +80 -0
- data/doc/rdoc/Log4r/IOOutputter.html +410 -0
- data/doc/rdoc/Log4r/Log4jXmlFormatter.html +337 -0
- data/doc/rdoc/Log4r/Log4rConfig.html +211 -0
- data/doc/rdoc/Log4r/Log4rTools.html +388 -0
- data/doc/rdoc/Log4r/LogEvent.html +378 -0
- data/doc/rdoc/Log4r/LogServer.html +340 -0
- data/doc/rdoc/Log4r/Logger.html +1150 -0
- data/doc/rdoc/Log4r/Logger/LoggerFactory.html +218 -0
- data/doc/rdoc/Log4r/Logger/Repository.html +225 -0
- data/doc/rdoc/Log4r/MDC.html +424 -0
- data/doc/rdoc/Log4r/MDC_rb.html +83 -0
- data/doc/rdoc/Log4r/NDC.html +632 -0
- data/doc/rdoc/Log4r/NDC_rb.html +110 -0
- data/doc/rdoc/Log4r/ObjectFormatter.html +280 -0
- data/doc/rdoc/Log4r/Outputter.html +934 -0
- data/doc/rdoc/Log4r/Outputter/OutputterFactory.html +218 -0
- data/doc/rdoc/Log4r/Outputter/consoleoutputters_rb.html +57 -0
- data/doc/rdoc/Log4r/Outputter/datefileoutputter_rb.html +93 -0
- data/doc/rdoc/Log4r/Outputter/emailoutputter_rb.html +179 -0
- data/doc/rdoc/Log4r/Outputter/fileoutputter_rb.html +64 -0
- data/doc/rdoc/Log4r/Outputter/iooutputter_rb.html +59 -0
- data/doc/rdoc/Log4r/Outputter/outputter_rb.html +222 -0
- data/doc/rdoc/Log4r/Outputter/outputterfactory_rb.html +62 -0
- data/doc/rdoc/Log4r/Outputter/remoteoutputter_rb.html +59 -0
- data/doc/rdoc/Log4r/Outputter/rollingfileoutputter_rb.html +66 -0
- data/doc/rdoc/Log4r/Outputter/staticoutputter_rb.html +55 -0
- data/doc/rdoc/Log4r/Outputter/syslogoutputter_rb.html +110 -0
- data/doc/rdoc/Log4r/Outputter/udpoutputter_rb.html +220 -0
- data/doc/rdoc/Log4r/PatternFormatter.html +404 -0
- data/doc/rdoc/Log4r/ROMPClient.html +211 -0
- data/doc/rdoc/Log4r/ROMPServer.html +211 -0
- data/doc/rdoc/Log4r/RemoteOutputter.html +402 -0
- data/doc/rdoc/Log4r/RollingFileOutputter.html +551 -0
- data/doc/rdoc/Log4r/RootLogger.html +530 -0
- data/doc/rdoc/Log4r/SimpleFormatter.html +276 -0
- data/doc/rdoc/Log4r/StderrOutputter.html +268 -0
- data/doc/rdoc/Log4r/StdoutOutputter.html +268 -0
- data/doc/rdoc/Log4r/SyslogOutputter.html +551 -0
- data/doc/rdoc/Log4r/UDPOutputter.html +379 -0
- data/doc/rdoc/Log4r/YamlConfigurator.html +966 -0
- data/doc/rdoc/Log4r/base_rb.html +57 -0
- data/doc/rdoc/Log4r/config_rb.html +122 -0
- data/doc/rdoc/Log4r/configurator_rb.html +370 -0
- data/doc/rdoc/Log4r/formatter/formatter_rb.html +121 -0
- data/doc/rdoc/Log4r/formatter/log4jxmlformatter_rb.html +64 -0
- data/doc/rdoc/Log4r/formatter/patternformatter_rb.html +239 -0
- data/doc/rdoc/Log4r/lib/drbloader_rb.html +57 -0
- data/doc/rdoc/Log4r/lib/xmlloader_rb.html +57 -0
- data/doc/rdoc/Log4r/logevent_rb.html +55 -0
- data/doc/rdoc/Log4r/logger_rb.html +293 -0
- data/doc/rdoc/Log4r/loggerfactory_rb.html +66 -0
- data/doc/rdoc/Log4r/logserver_rb.html +161 -0
- data/doc/rdoc/Log4r/rdoc/GDC.html +175 -0
- data/doc/rdoc/Log4r/rdoc/MDC.html +178 -0
- data/doc/rdoc/Log4r/rdoc/NDC.html +207 -0
- data/doc/rdoc/Log4r/rdoc/configurator.html +462 -0
- data/doc/rdoc/Log4r/rdoc/emailoutputter.html +279 -0
- data/doc/rdoc/Log4r/rdoc/formatter.html +218 -0
- data/doc/rdoc/Log4r/rdoc/log4r.html +286 -0
- data/doc/rdoc/Log4r/rdoc/logger.html +382 -0
- data/doc/rdoc/Log4r/rdoc/logserver.html +265 -0
- data/doc/rdoc/Log4r/rdoc/outputter.html +313 -0
- data/doc/rdoc/Log4r/rdoc/patternformatter.html +331 -0
- data/doc/rdoc/Log4r/rdoc/syslogoutputter.html +197 -0
- data/doc/rdoc/Log4r/rdoc/win32eventoutputter.html +165 -0
- data/doc/rdoc/Log4r/rdoc/yamlconfigurator.html +187 -0
- data/doc/rdoc/Log4r/repository_rb.html +74 -0
- data/doc/rdoc/Log4r/staticlogger_rb.html +55 -0
- data/doc/rdoc/Log4r/yamlconfigurator_rb.html +95 -0
- data/doc/rdoc/REXML.html +211 -0
- data/doc/rdoc/created.rid +1 -0
- data/doc/rdoc/images/brick.png +0 -0
- data/doc/rdoc/images/brick_link.png +0 -0
- data/doc/rdoc/images/bug.png +0 -0
- data/doc/rdoc/images/bullet_black.png +0 -0
- data/doc/rdoc/images/bullet_toggle_minus.png +0 -0
- data/doc/rdoc/images/bullet_toggle_plus.png +0 -0
- data/doc/rdoc/images/date.png +0 -0
- data/doc/rdoc/images/find.png +0 -0
- data/doc/rdoc/images/loadingAnimation.gif +0 -0
- data/doc/rdoc/images/macFFBgHack.png +0 -0
- data/doc/rdoc/images/package.png +0 -0
- data/doc/rdoc/images/page_green.png +0 -0
- data/doc/rdoc/images/page_white_text.png +0 -0
- data/doc/rdoc/images/page_white_width.png +0 -0
- data/doc/rdoc/images/plugin.png +0 -0
- data/doc/rdoc/images/ruby.png +0 -0
- data/doc/rdoc/images/tag_green.png +0 -0
- data/doc/rdoc/images/wrench.png +0 -0
- data/doc/rdoc/images/wrench_orange.png +0 -0
- data/doc/rdoc/images/zoom.png +0 -0
- data/doc/rdoc/index.html +585 -0
- data/doc/rdoc/js/darkfish.js +116 -0
- data/doc/rdoc/js/jquery.js +32 -0
- data/doc/rdoc/js/quicksearch.js +114 -0
- data/doc/rdoc/js/thickbox-compressed.js +10 -0
- data/doc/rdoc/log4r-rdoc.css +696 -0
- data/doc/rdoc/log4r_rb.html +207 -0
- data/doc/rdoc/rdoc.css +696 -0
- data/examples/rdoc-gen +2 -0
- data/src/log4r.rb +2 -2
- data/src/log4r/formatter/patternformatter.rb +15 -15
- data/src/log4r/outputter/udpoutputter.rb +4 -4
- data/tests/testchainsaw.rb +1 -1
- metadata +123 -8
- data/src/log4r/outputter/datefileoutputter.patch +0 -24
- data/src/log4r/outputter/diff +0 -14
- data/src/log4r/outputter/new-datefileoutputter.rb +0 -117
@@ -0,0 +1,95 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>File: yamlconfigurator.rb [1.1.7 Log4r API]</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="../js/jquery.js" type="text/javascript"
|
14
|
+
charset="utf-8"></script>
|
15
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
16
|
+
charset="utf-8"></script>
|
17
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
18
|
+
charset="utf-8"></script>
|
19
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
20
|
+
charset="utf-8"></script>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body class="file file-popup">
|
24
|
+
<div id="metadata">
|
25
|
+
<dl>
|
26
|
+
<dt class="modified-date">Last Modified</dt>
|
27
|
+
<dd class="modified-date">Wed Oct 28 12:56:40 -0700 2009</dd>
|
28
|
+
|
29
|
+
|
30
|
+
<dt class="requires">Requires</dt>
|
31
|
+
<dd class="requires">
|
32
|
+
<ul>
|
33
|
+
|
34
|
+
<li>log4r/logger</li>
|
35
|
+
|
36
|
+
<li>log4r/outputter/staticoutputter</li>
|
37
|
+
|
38
|
+
<li>log4r/logserver</li>
|
39
|
+
|
40
|
+
<li>log4r/outputter/remoteoutputter</li>
|
41
|
+
|
42
|
+
<li>yaml</li>
|
43
|
+
|
44
|
+
</ul>
|
45
|
+
</dd>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
</dl>
|
50
|
+
</div>
|
51
|
+
|
52
|
+
<div id="documentation">
|
53
|
+
|
54
|
+
<div class="description">
|
55
|
+
<h2>Description</h2>
|
56
|
+
<h1>Configuring <a href="../Log4r.html">Log4r</a> with <a href="../Log4r/YamlConfigurator.html">Log4r::YamlConfigurator</a></h1>
|
57
|
+
<p>
|
58
|
+
The YamlConfigurator class allows one to set up <a
|
59
|
+
href="../Log4r.html">Log4r</a> via YAML. It is used almost exactly as <a
|
60
|
+
href="../Log4r/Configurator.html">Log4r::Configurator</a> and has the same
|
61
|
+
features,
|
62
|
+
</p>
|
63
|
+
<pre>
|
64
|
+
ycfg = YamlConfigurator # handy shorthand
|
65
|
+
ycfg['foo'] = bar # replaces instances of #{foo} in the YAML with bar
|
66
|
+
ycfg.load_yaml_file('foo.yaml')
|
67
|
+
</pre>
|
68
|
+
<p>
|
69
|
+
Ruby 1.7 and 1.8 comes with a YAML parser. Hence, YAML can be used to
|
70
|
+
configure <a href="../Log4r.html">Log4r</a> out of the box.
|
71
|
+
</p>
|
72
|
+
<p>
|
73
|
+
A comprehensive example of a <a href="../Log4r.html">Log4r</a> YAML
|
74
|
+
configuration is provided in the examples directory.
|
75
|
+
</p>
|
76
|
+
<p>
|
77
|
+
To use this class:
|
78
|
+
</p>
|
79
|
+
<pre>
|
80
|
+
require 'log4r/yamlconfigurator'
|
81
|
+
</pre>
|
82
|
+
<p>
|
83
|
+
Thanks to Andreas Hund for making this possible.
|
84
|
+
</p>
|
85
|
+
<h2>Other Info</h2>
|
86
|
+
<p>
|
87
|
+
Version: $Id: yamlconfigurator.rb,v 1.2 2009/10/28 19:56:40 colbygk Exp $
|
88
|
+
</p>
|
89
|
+
|
90
|
+
</div>
|
91
|
+
|
92
|
+
</div>
|
93
|
+
</body>
|
94
|
+
</html>
|
95
|
+
|
data/doc/rdoc/REXML.html
ADDED
@@ -0,0 +1,211 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
<head>
|
6
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
7
|
+
|
8
|
+
<title>Module: REXML</title>
|
9
|
+
|
10
|
+
<link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
|
11
|
+
|
12
|
+
<script src="./js/jquery.js" type="text/javascript"
|
13
|
+
charset="utf-8"></script>
|
14
|
+
<script src="./js/thickbox-compressed.js" type="text/javascript"
|
15
|
+
charset="utf-8"></script>
|
16
|
+
<script src="./js/quicksearch.js" type="text/javascript"
|
17
|
+
charset="utf-8"></script>
|
18
|
+
<script src="./js/darkfish.js" type="text/javascript"
|
19
|
+
charset="utf-8"></script>
|
20
|
+
|
21
|
+
</head>
|
22
|
+
<body class="module">
|
23
|
+
|
24
|
+
<div id="metadata">
|
25
|
+
<div id="file-metadata">
|
26
|
+
<div id="file-list-section" class="section">
|
27
|
+
<h3 class="section-header">In Files</h3>
|
28
|
+
<div class="section-body">
|
29
|
+
<ul>
|
30
|
+
|
31
|
+
<li><a href="./log4r/lib/xmlloader_rb.html?TB_iframe=true&height=550&width=785"
|
32
|
+
class="thickbox" title="log4r/lib/xmlloader.rb">log4r/lib/xmlloader.rb</a></li>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div id="class-metadata">
|
42
|
+
|
43
|
+
<!-- Parent Class -->
|
44
|
+
|
45
|
+
|
46
|
+
<!-- Namespace Contents -->
|
47
|
+
|
48
|
+
|
49
|
+
<!-- Method Quickref -->
|
50
|
+
|
51
|
+
|
52
|
+
<!-- Included Modules -->
|
53
|
+
|
54
|
+
</div>
|
55
|
+
|
56
|
+
<div id="project-metadata">
|
57
|
+
|
58
|
+
|
59
|
+
<div id="fileindex-section" class="section project-section">
|
60
|
+
<h3 class="section-header">Files</h3>
|
61
|
+
<ul>
|
62
|
+
|
63
|
+
<li class="file"><a href="./log4r/rdoc/GDC.html">GDC</a></li>
|
64
|
+
|
65
|
+
<li class="file"><a href="./log4r/rdoc/MDC.html">MDC</a></li>
|
66
|
+
|
67
|
+
<li class="file"><a href="./log4r/rdoc/NDC.html">NDC</a></li>
|
68
|
+
|
69
|
+
<li class="file"><a href="./log4r/rdoc/configurator.html">configurator</a></li>
|
70
|
+
|
71
|
+
<li class="file"><a href="./log4r/rdoc/emailoutputter.html">emailoutputter</a></li>
|
72
|
+
|
73
|
+
<li class="file"><a href="./log4r/rdoc/formatter.html">formatter</a></li>
|
74
|
+
|
75
|
+
<li class="file"><a href="./log4r/rdoc/log4r.html">log4r</a></li>
|
76
|
+
|
77
|
+
<li class="file"><a href="./log4r/rdoc/logger.html">logger</a></li>
|
78
|
+
|
79
|
+
<li class="file"><a href="./log4r/rdoc/logserver.html">logserver</a></li>
|
80
|
+
|
81
|
+
<li class="file"><a href="./log4r/rdoc/outputter.html">outputter</a></li>
|
82
|
+
|
83
|
+
<li class="file"><a href="./log4r/rdoc/patternformatter.html">patternformatter</a></li>
|
84
|
+
|
85
|
+
<li class="file"><a href="./log4r/rdoc/syslogoutputter.html">syslogoutputter</a></li>
|
86
|
+
|
87
|
+
<li class="file"><a href="./log4r/rdoc/win32eventoutputter.html">win32eventoutputter</a></li>
|
88
|
+
|
89
|
+
<li class="file"><a href="./log4r/rdoc/yamlconfigurator.html">yamlconfigurator</a></li>
|
90
|
+
|
91
|
+
</ul>
|
92
|
+
</div>
|
93
|
+
|
94
|
+
|
95
|
+
<div id="classindex-section" class="section project-section">
|
96
|
+
<h3 class="section-header">Class Index
|
97
|
+
<span class="search-toggle"><img src="./images/find.png"
|
98
|
+
height="16" width="16" alt="[+]"
|
99
|
+
title="show/hide quicksearch" /></span></h3>
|
100
|
+
<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
|
101
|
+
<fieldset>
|
102
|
+
<legend>Quicksearch</legend>
|
103
|
+
<input type="text" name="quicksearch" value=""
|
104
|
+
class="quicksearch-field" />
|
105
|
+
</fieldset>
|
106
|
+
</form>
|
107
|
+
|
108
|
+
<ul class="link-list">
|
109
|
+
|
110
|
+
<li><a href="./Log4r.html">Log4r</a></li>
|
111
|
+
|
112
|
+
<li><a href="./Log4r/BasicFormatter.html">Log4r::BasicFormatter</a></li>
|
113
|
+
|
114
|
+
<li><a href="./Log4r/ConfigError.html">Log4r::ConfigError</a></li>
|
115
|
+
|
116
|
+
<li><a href="./Log4r/Configurator.html">Log4r::Configurator</a></li>
|
117
|
+
|
118
|
+
<li><a href="./Log4r/DateFileOutputter.html">Log4r::DateFileOutputter</a></li>
|
119
|
+
|
120
|
+
<li><a href="./Log4r/DefaultFormatter.html">Log4r::DefaultFormatter</a></li>
|
121
|
+
|
122
|
+
<li><a href="./Log4r/EmailOutputter.html">Log4r::EmailOutputter</a></li>
|
123
|
+
|
124
|
+
<li><a href="./Log4r/FileOutputter.html">Log4r::FileOutputter</a></li>
|
125
|
+
|
126
|
+
<li><a href="./Log4r/Formatter.html">Log4r::Formatter</a></li>
|
127
|
+
|
128
|
+
<li><a href="./Log4r/GDC.html">Log4r::GDC</a></li>
|
129
|
+
|
130
|
+
<li><a href="./Log4r/IOOutputter.html">Log4r::IOOutputter</a></li>
|
131
|
+
|
132
|
+
<li><a href="./Log4r/Log4jXmlFormatter.html">Log4r::Log4jXmlFormatter</a></li>
|
133
|
+
|
134
|
+
<li><a href="./Log4r/Log4rTools.html">Log4r::Log4rTools</a></li>
|
135
|
+
|
136
|
+
<li><a href="./Log4r/LogEvent.html">Log4r::LogEvent</a></li>
|
137
|
+
|
138
|
+
<li><a href="./Log4r/LogServer.html">Log4r::LogServer</a></li>
|
139
|
+
|
140
|
+
<li><a href="./Log4r/Logger.html">Log4r::Logger</a></li>
|
141
|
+
|
142
|
+
<li><a href="./Log4r/MDC.html">Log4r::MDC</a></li>
|
143
|
+
|
144
|
+
<li><a href="./Log4r/NDC.html">Log4r::NDC</a></li>
|
145
|
+
|
146
|
+
<li><a href="./Log4r/ObjectFormatter.html">Log4r::ObjectFormatter</a></li>
|
147
|
+
|
148
|
+
<li><a href="./Log4r/Outputter.html">Log4r::Outputter</a></li>
|
149
|
+
|
150
|
+
<li><a href="./Log4r/PatternFormatter.html">Log4r::PatternFormatter</a></li>
|
151
|
+
|
152
|
+
<li><a href="./Log4r/RemoteOutputter.html">Log4r::RemoteOutputter</a></li>
|
153
|
+
|
154
|
+
<li><a href="./Log4r/RollingFileOutputter.html">Log4r::RollingFileOutputter</a></li>
|
155
|
+
|
156
|
+
<li><a href="./Log4r/RootLogger.html">Log4r::RootLogger</a></li>
|
157
|
+
|
158
|
+
<li><a href="./Log4r/SimpleFormatter.html">Log4r::SimpleFormatter</a></li>
|
159
|
+
|
160
|
+
<li><a href="./Log4r/StderrOutputter.html">Log4r::StderrOutputter</a></li>
|
161
|
+
|
162
|
+
<li><a href="./Log4r/StdoutOutputter.html">Log4r::StdoutOutputter</a></li>
|
163
|
+
|
164
|
+
<li><a href="./Log4r/SyslogOutputter.html">Log4r::SyslogOutputter</a></li>
|
165
|
+
|
166
|
+
<li><a href="./Log4r/UDPOutputter.html">Log4r::UDPOutputter</a></li>
|
167
|
+
|
168
|
+
<li><a href="./Log4r/YamlConfigurator.html">Log4r::YamlConfigurator</a></li>
|
169
|
+
|
170
|
+
</ul>
|
171
|
+
<div id="no-class-search-results" style="display: none;">No matching classes.</div>
|
172
|
+
</div>
|
173
|
+
|
174
|
+
|
175
|
+
</div>
|
176
|
+
</div>
|
177
|
+
|
178
|
+
<div id="documentation">
|
179
|
+
<h1 class="module">REXML</h1>
|
180
|
+
|
181
|
+
<div id="description">
|
182
|
+
|
183
|
+
</div>
|
184
|
+
|
185
|
+
<!-- Constants -->
|
186
|
+
|
187
|
+
|
188
|
+
<!-- Attributes -->
|
189
|
+
|
190
|
+
|
191
|
+
<!-- Methods -->
|
192
|
+
|
193
|
+
|
194
|
+
</div>
|
195
|
+
|
196
|
+
|
197
|
+
<div id="rdoc-debugging-section-dump" class="debugging-section">
|
198
|
+
|
199
|
+
<p>Disabled; run with --debug to generate this.</p>
|
200
|
+
|
201
|
+
</div>
|
202
|
+
|
203
|
+
<div id="validator-badges">
|
204
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
205
|
+
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
206
|
+
Rdoc Generator</a> 1.1.6</small>.</p>
|
207
|
+
</div>
|
208
|
+
|
209
|
+
</body>
|
210
|
+
</html>
|
211
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
Fri, 12 Mar 2010 09:49:57 -0800
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/doc/rdoc/index.html
ADDED
@@ -0,0 +1,585 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>1.1.7 Log4r API</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
|
14
|
+
<script src="js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
|
15
|
+
<script src="js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
|
16
|
+
<script src="js/darkfish.js" type="text/javascript" charset="utf-8"></script>
|
17
|
+
|
18
|
+
</head>
|
19
|
+
<body class="indexpage">
|
20
|
+
|
21
|
+
|
22
|
+
<h1>1.1.7 Log4r API</h1>
|
23
|
+
|
24
|
+
|
25
|
+
<div id="main">
|
26
|
+
|
27
|
+
<p>
|
28
|
+
Welcome to the <a href="Log4r.html">Log4r</a> API reference. There are two
|
29
|
+
classes of reference, the file overview and the class API. They are listed
|
30
|
+
under Files and Classes respectively. File overviews cover the use of the
|
31
|
+
<a href="Log4r.html">Log4r</a> API and some implementation details, whereas
|
32
|
+
class APIs detail the methods available to the various objects.
|
33
|
+
</p>
|
34
|
+
<p>
|
35
|
+
The code examples in this API assume:
|
36
|
+
</p>
|
37
|
+
<pre>
|
38
|
+
include Log4r
|
39
|
+
</pre>
|
40
|
+
<p>
|
41
|
+
This file overview covers some of the major concepts in <a
|
42
|
+
href="Log4r.html">Log4r</a>.
|
43
|
+
</p>
|
44
|
+
<h2>Log Levels</h2>
|
45
|
+
<p>
|
46
|
+
<a href="Log4r.html">Log4r</a> provides as many levels of logging as
|
47
|
+
desired. Logging levels are an ordered set of names ranked by priority. The
|
48
|
+
more important a level is, the higher its priority and the more likely we
|
49
|
+
want to see any data associated with it. <a href="Log4r.html">Log4r</a>
|
50
|
+
provides many ways to filter information by level.
|
51
|
+
</p>
|
52
|
+
<p>
|
53
|
+
Loggers and Outputters have a level parameter which serves as a level
|
54
|
+
threshold. Any data below this threshold will be ignored by the Logger or
|
55
|
+
Outputter. Additionally, Outputters can be set to mask out any particular
|
56
|
+
level or collection of levels.
|
57
|
+
</p>
|
58
|
+
<p>
|
59
|
+
By combining level thresholds with other <a href="Log4r.html">Log4r</a>
|
60
|
+
features, one can direct any set of data to any destination desired in a
|
61
|
+
way that is easy to visualize and configure.
|
62
|
+
</p>
|
63
|
+
<h3>Default Levels</h3>
|
64
|
+
<p>
|
65
|
+
The default log levels and their priority rankings are:
|
66
|
+
</p>
|
67
|
+
<pre>
|
68
|
+
DEBUG < INFO < WARN < ERROR < FATAL
|
69
|
+
</pre>
|
70
|
+
<h3>Custom Levels</h3>
|
71
|
+
<p>
|
72
|
+
You can have as many levels as you desire, with any naming scheme. <a
|
73
|
+
href="Log4r.html">Log4r</a> will automatically define level constants and
|
74
|
+
log method names after your custom specification.
|
75
|
+
</p>
|
76
|
+
<p>
|
77
|
+
Please see <a href="log4r/configurator_rb.html">log4r/configurator.rb</a>
|
78
|
+
for details.
|
79
|
+
</p>
|
80
|
+
<h3>Boundary Levels</h3>
|
81
|
+
<p>
|
82
|
+
There are two special levels, <tt>ALL</tt> and <tt>OFF</tt> which denote
|
83
|
+
whether we are logging at all levels or at none. The priority ranks with
|
84
|
+
respect to the logging levels are as follows:
|
85
|
+
</p>
|
86
|
+
<pre>
|
87
|
+
ALL < logging levels as defined by user < OFF
|
88
|
+
</pre>
|
89
|
+
<p>
|
90
|
+
Thus, setting the level to <tt>ALL</tt> will enable logging at all levels
|
91
|
+
whereas <tt>OFF</tt> will turn off logging completely.
|
92
|
+
</p>
|
93
|
+
<h2>File Overviews</h2>
|
94
|
+
<table>
|
95
|
+
<tr><td valign="top">For Loggers:</td><td><a href="log4r/logger_rb.html">log4r/logger.rb</a>
|
96
|
+
|
97
|
+
</td></tr>
|
98
|
+
<tr><td valign="top">For Outputters:</td><td><a
|
99
|
+
href="log4r/outputter/outputter_rb.html">log4r/outputter/outputter.rb</a>
|
100
|
+
|
101
|
+
</td></tr>
|
102
|
+
<tr><td valign="top">For Formatters:</td><td><a
|
103
|
+
href="log4r/formatter/formatter_rb.html">log4r/formatter/formatter.rb</a>
|
104
|
+
|
105
|
+
</td></tr>
|
106
|
+
<tr><td valign="top">For configuration:</td><td><a href="log4r/configurator_rb.html">log4r/configurator.rb</a>
|
107
|
+
|
108
|
+
</td></tr>
|
109
|
+
</table>
|
110
|
+
<h2>Principal Classes of <a href="Log4r.html">Log4r</a></h2>
|
111
|
+
<ul>
|
112
|
+
<li><a href="Log4r/Logger.html">Log4r::Logger</a> - Interface to logging
|
113
|
+
|
114
|
+
</li>
|
115
|
+
<li><a href="Log4r/Outputter.html">Log4r::Outputter</a> - An output destination
|
116
|
+
for a logger.
|
117
|
+
|
118
|
+
</li>
|
119
|
+
<li><a href="Log4r/Formatter.html">Log4r::Formatter</a> - A means of formatting
|
120
|
+
log data.
|
121
|
+
|
122
|
+
</li>
|
123
|
+
<li><a href="Log4r/Configurator.html">Log4r::Configurator</a> - A means of
|
124
|
+
configuring <a href="Log4r.html">Log4r</a>
|
125
|
+
|
126
|
+
</li>
|
127
|
+
</ul>
|
128
|
+
<h2>Convenience Classes</h2>
|
129
|
+
<p>
|
130
|
+
<a href="Log4r.html">Log4r</a> provides several convenience Outputters and
|
131
|
+
Formatters. Please look at the file overviews of those classes for more
|
132
|
+
details.
|
133
|
+
</p>
|
134
|
+
<h2>Remote Logging</h2>
|
135
|
+
<p>
|
136
|
+
<a href="Log4r.html">Log4r</a> provides a way to send log events over a
|
137
|
+
network. See <a href="log4r/logserver_rb.html">log4r/logserver.rb</a> for
|
138
|
+
details.
|
139
|
+
</p>
|
140
|
+
<h2>What’s Going on Inside?</h2>
|
141
|
+
<p>
|
142
|
+
<a href="Log4r.html">Log4r</a> has an internal logger which records much of
|
143
|
+
what goes on inside. To see the output, define a Logger named
|
144
|
+
‘log4r’ and give it an Outputter of some sort. It logs only at
|
145
|
+
the lowest and highest priorities. That would be DEBUG and FATAL for the
|
146
|
+
standard setup.
|
147
|
+
</p>
|
148
|
+
<p>
|
149
|
+
It is essential to view this data when using certain classes, like <a
|
150
|
+
href="Log4r/LogServer.html">Log4r::LogServer</a> and <a
|
151
|
+
href="Log4r/EmailOutputter.html">Log4r::EmailOutputter</a>.
|
152
|
+
</p>
|
153
|
+
<h2>Other Info</h2>
|
154
|
+
<table>
|
155
|
+
<tr><td valign="top">Author:</td><td>Leon Torres
|
156
|
+
|
157
|
+
</td></tr>
|
158
|
+
<tr><td valign="top">Version:</td><td>$Id: <a href="log4r_rb.html">log4r.rb</a>,v 1.9 2010/03/11 22:59:51 colbygk
|
159
|
+
Exp $
|
160
|
+
|
161
|
+
</td></tr>
|
162
|
+
</table>
|
163
|
+
|
164
|
+
</div>
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
<h2>Files</h2>
|
170
|
+
<ul>
|
171
|
+
|
172
|
+
<li class="file"><a href="log4r/rdoc/GDC.html">GDC</a></li>
|
173
|
+
|
174
|
+
<li class="file"><a href="log4r/rdoc/MDC.html">MDC</a></li>
|
175
|
+
|
176
|
+
<li class="file"><a href="log4r/rdoc/NDC.html">NDC</a></li>
|
177
|
+
|
178
|
+
<li class="file"><a href="log4r/rdoc/configurator.html">configurator</a></li>
|
179
|
+
|
180
|
+
<li class="file"><a href="log4r/rdoc/emailoutputter.html">emailoutputter</a></li>
|
181
|
+
|
182
|
+
<li class="file"><a href="log4r/rdoc/formatter.html">formatter</a></li>
|
183
|
+
|
184
|
+
<li class="file"><a href="log4r/rdoc/log4r.html">log4r</a></li>
|
185
|
+
|
186
|
+
<li class="file"><a href="log4r/rdoc/logger.html">logger</a></li>
|
187
|
+
|
188
|
+
<li class="file"><a href="log4r/rdoc/logserver.html">logserver</a></li>
|
189
|
+
|
190
|
+
<li class="file"><a href="log4r/rdoc/outputter.html">outputter</a></li>
|
191
|
+
|
192
|
+
<li class="file"><a href="log4r/rdoc/patternformatter.html">patternformatter</a></li>
|
193
|
+
|
194
|
+
<li class="file"><a href="log4r/rdoc/syslogoutputter.html">syslogoutputter</a></li>
|
195
|
+
|
196
|
+
<li class="file"><a href="log4r/rdoc/win32eventoutputter.html">win32eventoutputter</a></li>
|
197
|
+
|
198
|
+
<li class="file"><a href="log4r/rdoc/yamlconfigurator.html">yamlconfigurator</a></li>
|
199
|
+
|
200
|
+
</ul>
|
201
|
+
|
202
|
+
|
203
|
+
<h2>Classes/Modules</h2>
|
204
|
+
<ul>
|
205
|
+
|
206
|
+
<li class="module"><a href="Log4r.html">Log4r</a></li>
|
207
|
+
|
208
|
+
<li class="class"><a href="Log4r/BasicFormatter.html">Log4r::BasicFormatter</a></li>
|
209
|
+
|
210
|
+
<li class="class"><a href="Log4r/ConfigError.html">Log4r::ConfigError</a></li>
|
211
|
+
|
212
|
+
<li class="class"><a href="Log4r/Configurator.html">Log4r::Configurator</a></li>
|
213
|
+
|
214
|
+
<li class="class"><a href="Log4r/DateFileOutputter.html">Log4r::DateFileOutputter</a></li>
|
215
|
+
|
216
|
+
<li class="class"><a href="Log4r/DefaultFormatter.html">Log4r::DefaultFormatter</a></li>
|
217
|
+
|
218
|
+
<li class="class"><a href="Log4r/EmailOutputter.html">Log4r::EmailOutputter</a></li>
|
219
|
+
|
220
|
+
<li class="class"><a href="Log4r/FileOutputter.html">Log4r::FileOutputter</a></li>
|
221
|
+
|
222
|
+
<li class="class"><a href="Log4r/Formatter.html">Log4r::Formatter</a></li>
|
223
|
+
|
224
|
+
<li class="class"><a href="Log4r/GDC.html">Log4r::GDC</a></li>
|
225
|
+
|
226
|
+
<li class="class"><a href="Log4r/IOOutputter.html">Log4r::IOOutputter</a></li>
|
227
|
+
|
228
|
+
<li class="class"><a href="Log4r/Log4jXmlFormatter.html">Log4r::Log4jXmlFormatter</a></li>
|
229
|
+
|
230
|
+
<li class="class"><a href="Log4r/Log4rTools.html">Log4r::Log4rTools</a></li>
|
231
|
+
|
232
|
+
<li class="class"><a href="Log4r/LogEvent.html">Log4r::LogEvent</a></li>
|
233
|
+
|
234
|
+
<li class="class"><a href="Log4r/LogServer.html">Log4r::LogServer</a></li>
|
235
|
+
|
236
|
+
<li class="class"><a href="Log4r/Logger.html">Log4r::Logger</a></li>
|
237
|
+
|
238
|
+
<li class="class"><a href="Log4r/MDC.html">Log4r::MDC</a></li>
|
239
|
+
|
240
|
+
<li class="class"><a href="Log4r/NDC.html">Log4r::NDC</a></li>
|
241
|
+
|
242
|
+
<li class="class"><a href="Log4r/ObjectFormatter.html">Log4r::ObjectFormatter</a></li>
|
243
|
+
|
244
|
+
<li class="class"><a href="Log4r/Outputter.html">Log4r::Outputter</a></li>
|
245
|
+
|
246
|
+
<li class="class"><a href="Log4r/PatternFormatter.html">Log4r::PatternFormatter</a></li>
|
247
|
+
|
248
|
+
<li class="class"><a href="Log4r/RemoteOutputter.html">Log4r::RemoteOutputter</a></li>
|
249
|
+
|
250
|
+
<li class="class"><a href="Log4r/RollingFileOutputter.html">Log4r::RollingFileOutputter</a></li>
|
251
|
+
|
252
|
+
<li class="class"><a href="Log4r/RootLogger.html">Log4r::RootLogger</a></li>
|
253
|
+
|
254
|
+
<li class="class"><a href="Log4r/SimpleFormatter.html">Log4r::SimpleFormatter</a></li>
|
255
|
+
|
256
|
+
<li class="class"><a href="Log4r/StderrOutputter.html">Log4r::StderrOutputter</a></li>
|
257
|
+
|
258
|
+
<li class="class"><a href="Log4r/StdoutOutputter.html">Log4r::StdoutOutputter</a></li>
|
259
|
+
|
260
|
+
<li class="class"><a href="Log4r/SyslogOutputter.html">Log4r::SyslogOutputter</a></li>
|
261
|
+
|
262
|
+
<li class="class"><a href="Log4r/UDPOutputter.html">Log4r::UDPOutputter</a></li>
|
263
|
+
|
264
|
+
<li class="class"><a href="Log4r/YamlConfigurator.html">Log4r::YamlConfigurator</a></li>
|
265
|
+
|
266
|
+
</ul>
|
267
|
+
|
268
|
+
<h2>Methods</h2>
|
269
|
+
<ul>
|
270
|
+
|
271
|
+
<li><a href="Log4r/Outputter.html#M000115">::[] — Log4r::Outputter</a></li>
|
272
|
+
|
273
|
+
<li><a href="Log4r/Logger.html#M000133">::[] — Log4r::Logger</a></li>
|
274
|
+
|
275
|
+
<li><a href="Log4r/Configurator.html#M000009">::[] — Log4r::Configurator</a></li>
|
276
|
+
|
277
|
+
<li><a href="Log4r/YamlConfigurator.html#M000138">::[] — Log4r::YamlConfigurator</a></li>
|
278
|
+
|
279
|
+
<li><a href="Log4r/Outputter.html#M000118">::[]= — Log4r::Outputter</a></li>
|
280
|
+
|
281
|
+
<li><a href="Log4r/Configurator.html#M000010">::[]= — Log4r::Configurator</a></li>
|
282
|
+
|
283
|
+
<li><a href="Log4r/YamlConfigurator.html#M000139">::[]= — Log4r::YamlConfigurator</a></li>
|
284
|
+
|
285
|
+
<li><a href="Log4r/YamlConfigurator.html#M000143">::actual_load — Log4r::YamlConfigurator</a></li>
|
286
|
+
|
287
|
+
<li><a href="Log4r/Configurator.html#M000018">::actual_load — Log4r::Configurator</a></li>
|
288
|
+
|
289
|
+
<li><a href="Log4r/MDC.html#M000063">::check_thread_instance — Log4r::MDC</a></li>
|
290
|
+
|
291
|
+
<li><a href="Log4r/NDC.html#M000068">::check_thread_instance — Log4r::NDC</a></li>
|
292
|
+
|
293
|
+
<li><a href="Log4r/GDC.html#M000035">::clear — Log4r::GDC</a></li>
|
294
|
+
|
295
|
+
<li><a href="Log4r/NDC.html#M000069">::clear — Log4r::NDC</a></li>
|
296
|
+
|
297
|
+
<li><a href="Log4r/NDC.html#M000070">::clone_stack — Log4r::NDC</a></li>
|
298
|
+
|
299
|
+
<li><a href="Log4r/Log4rTools.html#M000005">::comma_split — Log4r::Log4rTools</a></li>
|
300
|
+
|
301
|
+
<li><a href="Log4r/Configurator.html#M000014">::custom_levels — Log4r::Configurator</a></li>
|
302
|
+
|
303
|
+
<li><a href="Log4r/YamlConfigurator.html#M000140">::custom_levels — Log4r::YamlConfigurator</a></li>
|
304
|
+
|
305
|
+
<li><a href="Log4r/Log4rTools.html#M000004">::decode_bool — Log4r::Log4rTools</a></li>
|
306
|
+
|
307
|
+
<li><a href="Log4r/YamlConfigurator.html#M000146">::decode_custom_levels — Log4r::YamlConfigurator</a></li>
|
308
|
+
|
309
|
+
<li><a href="Log4r/Configurator.html#M000022">::decode_custom_levels — Log4r::Configurator</a></li>
|
310
|
+
|
311
|
+
<li><a href="Log4r/YamlConfigurator.html#M000150">::decode_formatter — Log4r::YamlConfigurator</a></li>
|
312
|
+
|
313
|
+
<li><a href="Log4r/Configurator.html#M000027">::decode_formatter — Log4r::Configurator</a></li>
|
314
|
+
|
315
|
+
<li><a href="Log4r/YamlConfigurator.html#M000151">::decode_hash_params — Log4r::YamlConfigurator</a></li>
|
316
|
+
|
317
|
+
<li><a href="Log4r/Configurator.html#M000029">::decode_hash_params — Log4r::Configurator</a></li>
|
318
|
+
|
319
|
+
<li><a href="Log4r/Configurator.html#M000031">::decode_logger — Log4r::Configurator</a></li>
|
320
|
+
|
321
|
+
<li><a href="Log4r/YamlConfigurator.html#M000153">::decode_logger — Log4r::YamlConfigurator</a></li>
|
322
|
+
|
323
|
+
<li><a href="Log4r/YamlConfigurator.html#M000155">::decode_logger_common — Log4r::YamlConfigurator</a></li>
|
324
|
+
|
325
|
+
<li><a href="Log4r/Configurator.html#M000034">::decode_logger_common — Log4r::Configurator</a></li>
|
326
|
+
|
327
|
+
<li><a href="Log4r/YamlConfigurator.html#M000154">::decode_logserver — Log4r::YamlConfigurator</a></li>
|
328
|
+
|
329
|
+
<li><a href="Log4r/Configurator.html#M000033">::decode_logserver — Log4r::Configurator</a></li>
|
330
|
+
|
331
|
+
<li><a href="Log4r/YamlConfigurator.html#M000149">::decode_outputter — Log4r::YamlConfigurator</a></li>
|
332
|
+
|
333
|
+
<li><a href="Log4r/Configurator.html#M000026">::decode_outputter — Log4r::Configurator</a></li>
|
334
|
+
|
335
|
+
<li><a href="Log4r/Configurator.html#M000025">::decode_parameter — Log4r::Configurator</a></li>
|
336
|
+
|
337
|
+
<li><a href="Log4r/YamlConfigurator.html#M000148">::decode_parameters — Log4r::YamlConfigurator</a></li>
|
338
|
+
|
339
|
+
<li><a href="Log4r/Configurator.html#M000024">::decode_parameters — Log4r::Configurator</a></li>
|
340
|
+
|
341
|
+
<li><a href="Log4r/YamlConfigurator.html#M000145">::decode_pre_config — Log4r::YamlConfigurator</a></li>
|
342
|
+
|
343
|
+
<li><a href="Log4r/Configurator.html#M000021">::decode_pre_config — Log4r::Configurator</a></li>
|
344
|
+
|
345
|
+
<li><a href="Log4r/Configurator.html#M000020">::decode_xml — Log4r::Configurator</a></li>
|
346
|
+
|
347
|
+
<li><a href="Log4r/YamlConfigurator.html#M000144">::decode_yaml — Log4r::YamlConfigurator</a></li>
|
348
|
+
|
349
|
+
<li><a href="Log4r/Configurator.html#M000017">::detect_rexml — Log4r::Configurator</a></li>
|
350
|
+
|
351
|
+
<li><a href="Log4r/Outputter.html#M000121">::each — Log4r::Outputter</a></li>
|
352
|
+
|
353
|
+
<li><a href="Log4r/Logger.html#M000135">::each — Log4r::Logger</a></li>
|
354
|
+
|
355
|
+
<li><a href="Log4r/Logger.html#M000136">::each_logger — Log4r::Logger</a></li>
|
356
|
+
|
357
|
+
<li><a href="Log4r/Outputter.html#M000122">::each_outputter — Log4r::Outputter</a></li>
|
358
|
+
|
359
|
+
<li><a href="Log4r/NDC.html#M000073">::get — Log4r::NDC</a></li>
|
360
|
+
|
361
|
+
<li><a href="Log4r/Logger.html#M000134">::get — Log4r::Logger</a></li>
|
362
|
+
|
363
|
+
<li><a href="Log4r/MDC.html#M000064">::get — Log4r::MDC</a></li>
|
364
|
+
|
365
|
+
<li><a href="Log4r/GDC.html#M000036">::get — Log4r::GDC</a></li>
|
366
|
+
|
367
|
+
<li><a href="Log4r/MDC.html#M000065">::get_context — Log4r::MDC</a></li>
|
368
|
+
|
369
|
+
<li><a href="Log4r/NDC.html#M000071">::get_depth — Log4r::NDC</a></li>
|
370
|
+
|
371
|
+
<li><a href="Log4r/Logger.html#M000132">::global — Log4r::Logger</a></li>
|
372
|
+
|
373
|
+
<li><a href="Log4r/YamlConfigurator.html#M000147">::global_config — Log4r::YamlConfigurator</a></li>
|
374
|
+
|
375
|
+
<li><a href="Log4r/Configurator.html#M000023">::global_config — Log4r::Configurator</a></li>
|
376
|
+
|
377
|
+
<li><a href="Log4r/NDC.html#M000072">::inherit — Log4r::NDC</a></li>
|
378
|
+
|
379
|
+
<li><a href="Log4r/Configurator.html#M000015">::load_xml_file — Log4r::Configurator</a></li>
|
380
|
+
|
381
|
+
<li><a href="Log4r/Configurator.html#M000016">::load_xml_string — Log4r::Configurator</a></li>
|
382
|
+
|
383
|
+
<li><a href="Log4r/YamlConfigurator.html#M000141">::load_yaml_file — Log4r::YamlConfigurator</a></li>
|
384
|
+
|
385
|
+
<li><a href="Log4r/YamlConfigurator.html#M000142">::load_yaml_string — Log4r::YamlConfigurator</a></li>
|
386
|
+
|
387
|
+
<li><a href="Log4r/Logger.html#M000137">::log_internal — Log4r::Logger</a></li>
|
388
|
+
|
389
|
+
<li><a href="Log4r/FileOutputter.html#M000093">::new — Log4r::FileOutputter</a></li>
|
390
|
+
|
391
|
+
<li><a href="Log4r/EmailOutputter.html#M000084">::new — Log4r::EmailOutputter</a></li>
|
392
|
+
|
393
|
+
<li><a href="Log4r/DateFileOutputter.html#M000081">::new — Log4r::DateFileOutputter</a></li>
|
394
|
+
|
395
|
+
<li><a href="Log4r/Formatter.html#M000006">::new — Log4r::Formatter</a></li>
|
396
|
+
|
397
|
+
<li><a href="Log4r/IOOutputter.html#M000094">::new — Log4r::IOOutputter</a></li>
|
398
|
+
|
399
|
+
<li><a href="Log4r/RemoteOutputter.html#M000109">::new — Log4r::RemoteOutputter</a></li>
|
400
|
+
|
401
|
+
<li><a href="Log4r/RollingFileOutputter.html#M000112">::new — Log4r::RollingFileOutputter</a></li>
|
402
|
+
|
403
|
+
<li><a href="Log4r/LogEvent.html#M000040">::new — Log4r::LogEvent</a></li>
|
404
|
+
|
405
|
+
<li><a href="Log4r/RootLogger.html#M000053">::new — Log4r::RootLogger</a></li>
|
406
|
+
|
407
|
+
<li><a href="Log4r/Logger.html#M000041">::new — Log4r::Logger</a></li>
|
408
|
+
|
409
|
+
<li><a href="Log4r/StdoutOutputter.html#M000079">::new — Log4r::StdoutOutputter</a></li>
|
410
|
+
|
411
|
+
<li><a href="Log4r/StderrOutputter.html#M000080">::new — Log4r::StderrOutputter</a></li>
|
412
|
+
|
413
|
+
<li><a href="Log4r/BasicFormatter.html#M000011">::new — Log4r::BasicFormatter</a></li>
|
414
|
+
|
415
|
+
<li><a href="Log4r/Outputter.html#M000098">::new — Log4r::Outputter</a></li>
|
416
|
+
|
417
|
+
<li><a href="Log4r/UDPOutputter.html#M000123">::new — Log4r::UDPOutputter</a></li>
|
418
|
+
|
419
|
+
<li><a href="Log4r/SyslogOutputter.html#M000125">::new — Log4r::SyslogOutputter</a></li>
|
420
|
+
|
421
|
+
<li><a href="Log4r/LogServer.html#M000061">::new — Log4r::LogServer</a></li>
|
422
|
+
|
423
|
+
<li><a href="Log4r/LogServer.html#M000062">::new — Log4r::LogServer</a></li>
|
424
|
+
|
425
|
+
<li><a href="Log4r/RemoteOutputter.html#M000108">::new — Log4r::RemoteOutputter</a></li>
|
426
|
+
|
427
|
+
<li><a href="Log4r/PatternFormatter.html#M000038">::new — Log4r::PatternFormatter</a></li>
|
428
|
+
|
429
|
+
<li><a href="Log4r/YamlConfigurator.html#M000152">::paramsub — Log4r::YamlConfigurator</a></li>
|
430
|
+
|
431
|
+
<li><a href="Log4r/Configurator.html#M000030">::paramsub — Log4r::Configurator</a></li>
|
432
|
+
|
433
|
+
<li><a href="Log4r/NDC.html#M000074">::peek — Log4r::NDC</a></li>
|
434
|
+
|
435
|
+
<li><a href="Log4r/NDC.html#M000075">::pop — Log4r::NDC</a></li>
|
436
|
+
|
437
|
+
<li><a href="Log4r/NDC.html#M000076">::push — Log4r::NDC</a></li>
|
438
|
+
|
439
|
+
<li><a href="Log4r/MDC.html#M000066">::put — Log4r::MDC</a></li>
|
440
|
+
|
441
|
+
<li><a href="Log4r/NDC.html#M000077">::remove — Log4r::NDC</a></li>
|
442
|
+
|
443
|
+
<li><a href="Log4r/MDC.html#M000067">::remove — Log4r::MDC</a></li>
|
444
|
+
|
445
|
+
<li><a href="Log4r/Logger.html#M000131">::root — Log4r::Logger</a></li>
|
446
|
+
|
447
|
+
<li><a href="Log4r/GDC.html#M000037">::set — Log4r::GDC</a></li>
|
448
|
+
|
449
|
+
<li><a href="Log4r/NDC.html#M000078">::set_max_depth — Log4r::NDC</a></li>
|
450
|
+
|
451
|
+
<li><a href="Log4r/Outputter.html#M000117">::stderr — Log4r::Outputter</a></li>
|
452
|
+
|
453
|
+
<li><a href="Log4r/Outputter.html#M000116">::stdout — Log4r::Outputter</a></li>
|
454
|
+
|
455
|
+
<li><a href="Log4r/Log4rTools.html#M000002">::valid_level? — Log4r::Log4rTools</a></li>
|
456
|
+
|
457
|
+
<li><a href="Log4r/Log4rTools.html#M000001">::validate_level — Log4r::Log4rTools</a></li>
|
458
|
+
|
459
|
+
<li><a href="Log4r/Logger.html#M000052">#== — Log4r::Logger</a></li>
|
460
|
+
|
461
|
+
<li><a href="Log4r/RootLogger.html#M000059">#add — Log4r::RootLogger</a></li>
|
462
|
+
|
463
|
+
<li><a href="Log4r/Logger.html#M000049">#add — Log4r::Logger</a></li>
|
464
|
+
|
465
|
+
<li><a href="Log4r/Logger.html#M000045">#additive= — Log4r::Logger</a></li>
|
466
|
+
|
467
|
+
<li><a href="Log4r/RootLogger.html#M000058">#additive= — Log4r::RootLogger</a></li>
|
468
|
+
|
469
|
+
<li><a href="Log4r/SyslogOutputter.html#M000130">#canonical_log — Log4r::SyslogOutputter</a></li>
|
470
|
+
|
471
|
+
<li><a href="Log4r/RemoteOutputter.html#M000111">#canonical_log — Log4r::RemoteOutputter</a></li>
|
472
|
+
|
473
|
+
<li><a href="Log4r/Outputter.html#M000104">#canonical_log — Log4r::Outputter</a></li>
|
474
|
+
|
475
|
+
<li><a href="Log4r/EmailOutputter.html#M000091">#canonical_log — Log4r::EmailOutputter</a></li>
|
476
|
+
|
477
|
+
<li><a href="Log4r/DateFileOutputter.html#M000086">#change — Log4r::DateFileOutputter</a></li>
|
478
|
+
|
479
|
+
<li><a href="Log4r/SyslogOutputter.html#M000127">#close — Log4r::SyslogOutputter</a></li>
|
480
|
+
|
481
|
+
<li><a href="Log4r/IOOutputter.html#M000096">#close — Log4r::IOOutputter</a></li>
|
482
|
+
|
483
|
+
<li><a href="Log4r/IOOutputter.html#M000095">#closed? — Log4r::IOOutputter</a></li>
|
484
|
+
|
485
|
+
<li><a href="Log4r/SyslogOutputter.html#M000126">#closed? — Log4r::SyslogOutputter</a></li>
|
486
|
+
|
487
|
+
<li><a href="Log4r/Logger.html#M000043">#deal_with_inheritance — Log4r::Logger</a></li>
|
488
|
+
|
489
|
+
<li><a href="Log4r/EmailOutputter.html#M000089">#decode_immediate_at — Log4r::EmailOutputter</a></li>
|
490
|
+
|
491
|
+
<li><a href="Log4r/Outputter.html#M000102">#flush — Log4r::Outputter</a></li>
|
492
|
+
|
493
|
+
<li><a href="Log4r/EmailOutputter.html#M000087">#flush — Log4r::EmailOutputter</a></li>
|
494
|
+
|
495
|
+
<li><a href="Log4r/RemoteOutputter.html#M000110">#flush — Log4r::RemoteOutputter</a></li>
|
496
|
+
|
497
|
+
<li><a href="Log4r/Formatter.html#M000007">#format — Log4r::Formatter</a></li>
|
498
|
+
|
499
|
+
<li><a href="Log4r/Outputter.html#M000105">#format — Log4r::Outputter</a></li>
|
500
|
+
|
501
|
+
<li><a href="Log4r/BasicFormatter.html#M000012">#format — Log4r::BasicFormatter</a></li>
|
502
|
+
|
503
|
+
<li><a href="Log4r/ObjectFormatter.html#M000019">#format — Log4r::ObjectFormatter</a></li>
|
504
|
+
|
505
|
+
<li><a href="Log4r/Log4jXmlFormatter.html#M000028">#format — Log4r::Log4jXmlFormatter</a></li>
|
506
|
+
|
507
|
+
<li><a href="Log4r/SimpleFormatter.html#M000008">#format — Log4r::SimpleFormatter</a></li>
|
508
|
+
|
509
|
+
<li><a href="Log4r/BasicFormatter.html#M000013">#format_object — Log4r::BasicFormatter</a></li>
|
510
|
+
|
511
|
+
<li><a href="Log4r/Outputter.html#M000101">#formatter= — Log4r::Outputter</a></li>
|
512
|
+
|
513
|
+
<li><a href="Log4r/SyslogOutputter.html#M000129">#get_levels_map — Log4r::SyslogOutputter</a></li>
|
514
|
+
|
515
|
+
<li><a href="Log4r/RootLogger.html#M000054">#is_root? — Log4r::RootLogger</a></li>
|
516
|
+
|
517
|
+
<li><a href="Log4r/Logger.html#M000051">#is_root? — Log4r::Logger</a></li>
|
518
|
+
|
519
|
+
<li><a href="Log4r/RootLogger.html#M000055">#level= — Log4r::RootLogger</a></li>
|
520
|
+
|
521
|
+
<li><a href="Log4r/Logger.html#M000044">#level= — Log4r::Logger</a></li>
|
522
|
+
|
523
|
+
<li><a href="Log4r/Outputter.html#M000099">#level= — Log4r::Outputter</a></li>
|
524
|
+
|
525
|
+
<li><a href="Log4r/DateFileOutputter.html#M000083">#makeNewFilename — Log4r::DateFileOutputter</a></li>
|
526
|
+
|
527
|
+
<li><a href="Log4r/RollingFileOutputter.html#M000114">#makeNewFilename — Log4r::RollingFileOutputter</a></li>
|
528
|
+
|
529
|
+
<li><a href="Log4r/SyslogOutputter.html#M000128">#map_levels_by_name_to_syslog — Log4r::SyslogOutputter</a></li>
|
530
|
+
|
531
|
+
<li><a href="Log4r/Outputter.html#M000100">#only_at — Log4r::Outputter</a></li>
|
532
|
+
|
533
|
+
<li><a href="Log4r/RootLogger.html#M000056">#outputters= — Log4r::RootLogger</a></li>
|
534
|
+
|
535
|
+
<li><a href="Log4r/Logger.html#M000048">#outputters= — Log4r::Logger</a></li>
|
536
|
+
|
537
|
+
<li><a href="Log4r/Logger.html#M000047">#parent= — Log4r::Logger</a></li>
|
538
|
+
|
539
|
+
<li><a href="Log4r/Log4jXmlFormatter.html#M000032">#parse_caller — Log4r::Log4jXmlFormatter</a></li>
|
540
|
+
|
541
|
+
<li><a href="Log4r/Logger.html#M000050">#remove — Log4r::Logger</a></li>
|
542
|
+
|
543
|
+
<li><a href="Log4r/RootLogger.html#M000060">#remove — Log4r::RootLogger</a></li>
|
544
|
+
|
545
|
+
<li><a href="Log4r/DateFileOutputter.html#M000085">#requiresChange — Log4r::DateFileOutputter</a></li>
|
546
|
+
|
547
|
+
<li><a href="Log4r/RollingFileOutputter.html#M000119">#requiresRoll — Log4r::RollingFileOutputter</a></li>
|
548
|
+
|
549
|
+
<li><a href="Log4r/RollingFileOutputter.html#M000120">#roll — Log4r::RollingFileOutputter</a></li>
|
550
|
+
|
551
|
+
<li><a href="Log4r/EmailOutputter.html#M000092">#send_mail — Log4r::EmailOutputter</a></li>
|
552
|
+
|
553
|
+
<li><a href="Log4r/Outputter.html#M000107">#synch — Log4r::Outputter</a></li>
|
554
|
+
|
555
|
+
<li><a href="Log4r/Logger.html#M000046">#trace= — Log4r::Logger</a></li>
|
556
|
+
|
557
|
+
<li><a href="Log4r/RootLogger.html#M000057">#trace= — Log4r::RootLogger</a></li>
|
558
|
+
|
559
|
+
<li><a href="Log4r/EmailOutputter.html#M000088">#validate — Log4r::EmailOutputter</a></li>
|
560
|
+
|
561
|
+
<li><a href="Log4r/Outputter.html#M000103">#validate_hash — Log4r::Outputter</a></li>
|
562
|
+
|
563
|
+
<li><a href="Log4r/Logger.html#M000042">#validate_name — Log4r::Logger</a></li>
|
564
|
+
|
565
|
+
<li><a href="Log4r/EmailOutputter.html#M000090">#validate_smtp_params — Log4r::EmailOutputter</a></li>
|
566
|
+
|
567
|
+
<li><a href="Log4r/Outputter.html#M000106">#write — Log4r::Outputter</a></li>
|
568
|
+
|
569
|
+
<li><a href="Log4r/UDPOutputter.html#M000124">#write — Log4r::UDPOutputter</a></li>
|
570
|
+
|
571
|
+
<li><a href="Log4r/IOOutputter.html#M000097">#write — Log4r::IOOutputter</a></li>
|
572
|
+
|
573
|
+
<li><a href="Log4r/RollingFileOutputter.html#M000113">#write — Log4r::RollingFileOutputter</a></li>
|
574
|
+
|
575
|
+
<li><a href="Log4r/DateFileOutputter.html#M000082">#write — Log4r::DateFileOutputter</a></li>
|
576
|
+
|
577
|
+
</ul>
|
578
|
+
|
579
|
+
<div id="validator-badges">
|
580
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
581
|
+
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
582
|
+
Rdoc Generator</a> 1.1.6</small>.</p>
|
583
|
+
</div>
|
584
|
+
</body>
|
585
|
+
</html>
|