log4r 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,268 @@ 
     | 
|
| 
      
 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>Class: Log4r::StdoutOutputter</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="class">
         
     | 
| 
      
 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/outputter/consoleoutputters_rb.html?TB_iframe=true&height=550&width=785"
         
     | 
| 
      
 32 
     | 
    
         
            +
            							class="thickbox" title="log4r/outputter/consoleoutputters.rb">log4r/outputter/consoleoutputters.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 
     | 
    
         
            +
            			<div id="parent-class-section" class="section">
         
     | 
| 
      
 46 
     | 
    
         
            +
            				<h3 class="section-header">Parent</h3>
         
     | 
| 
      
 47 
     | 
    
         
            +
            				
         
     | 
| 
      
 48 
     | 
    
         
            +
            				<p class="link">IOOutputter</p>
         
     | 
| 
      
 49 
     | 
    
         
            +
            				
         
     | 
| 
      
 50 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 51 
     | 
    
         
            +
            			
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            			<!-- Namespace Contents -->
         
     | 
| 
      
 54 
     | 
    
         
            +
            			
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            			<!-- Method Quickref -->
         
     | 
| 
      
 57 
     | 
    
         
            +
            			
         
     | 
| 
      
 58 
     | 
    
         
            +
            			<div id="method-list-section" class="section">
         
     | 
| 
      
 59 
     | 
    
         
            +
            				<h3 class="section-header">Methods</h3>
         
     | 
| 
      
 60 
     | 
    
         
            +
            				<ul class="link-list">
         
     | 
| 
      
 61 
     | 
    
         
            +
            					
         
     | 
| 
      
 62 
     | 
    
         
            +
            					<li><a href="#M000079">::new</a></li>
         
     | 
| 
      
 63 
     | 
    
         
            +
            					
         
     | 
| 
      
 64 
     | 
    
         
            +
            				</ul>
         
     | 
| 
      
 65 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 66 
     | 
    
         
            +
            			
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
            			<!-- Included Modules -->
         
     | 
| 
      
 69 
     | 
    
         
            +
            			
         
     | 
| 
      
 70 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
            		<div id="project-metadata">
         
     | 
| 
      
 73 
     | 
    
         
            +
            			
         
     | 
| 
      
 74 
     | 
    
         
            +
            			
         
     | 
| 
      
 75 
     | 
    
         
            +
            			<div id="fileindex-section" class="section project-section">
         
     | 
| 
      
 76 
     | 
    
         
            +
            				<h3 class="section-header">Files</h3>
         
     | 
| 
      
 77 
     | 
    
         
            +
            				<ul>
         
     | 
| 
      
 78 
     | 
    
         
            +
            				
         
     | 
| 
      
 79 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/GDC.html">GDC</a></li>
         
     | 
| 
      
 80 
     | 
    
         
            +
            				
         
     | 
| 
      
 81 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/MDC.html">MDC</a></li>
         
     | 
| 
      
 82 
     | 
    
         
            +
            				
         
     | 
| 
      
 83 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/NDC.html">NDC</a></li>
         
     | 
| 
      
 84 
     | 
    
         
            +
            				
         
     | 
| 
      
 85 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/configurator.html">configurator</a></li>
         
     | 
| 
      
 86 
     | 
    
         
            +
            				
         
     | 
| 
      
 87 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/emailoutputter.html">emailoutputter</a></li>
         
     | 
| 
      
 88 
     | 
    
         
            +
            				
         
     | 
| 
      
 89 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/formatter.html">formatter</a></li>
         
     | 
| 
      
 90 
     | 
    
         
            +
            				
         
     | 
| 
      
 91 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/log4r.html">log4r</a></li>
         
     | 
| 
      
 92 
     | 
    
         
            +
            				
         
     | 
| 
      
 93 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/logger.html">logger</a></li>
         
     | 
| 
      
 94 
     | 
    
         
            +
            				
         
     | 
| 
      
 95 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/logserver.html">logserver</a></li>
         
     | 
| 
      
 96 
     | 
    
         
            +
            				
         
     | 
| 
      
 97 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/outputter.html">outputter</a></li>
         
     | 
| 
      
 98 
     | 
    
         
            +
            				
         
     | 
| 
      
 99 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/patternformatter.html">patternformatter</a></li>
         
     | 
| 
      
 100 
     | 
    
         
            +
            				
         
     | 
| 
      
 101 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/syslogoutputter.html">syslogoutputter</a></li>
         
     | 
| 
      
 102 
     | 
    
         
            +
            				
         
     | 
| 
      
 103 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/win32eventoutputter.html">win32eventoutputter</a></li>
         
     | 
| 
      
 104 
     | 
    
         
            +
            				
         
     | 
| 
      
 105 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/yamlconfigurator.html">yamlconfigurator</a></li>
         
     | 
| 
      
 106 
     | 
    
         
            +
            				
         
     | 
| 
      
 107 
     | 
    
         
            +
            				</ul>
         
     | 
| 
      
 108 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 109 
     | 
    
         
            +
            			
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
            			<div id="classindex-section" class="section project-section">
         
     | 
| 
      
 112 
     | 
    
         
            +
            				<h3 class="section-header">Class Index
         
     | 
| 
      
 113 
     | 
    
         
            +
            					<span class="search-toggle"><img src="../images/find.png"
         
     | 
| 
      
 114 
     | 
    
         
            +
            						height="16" width="16" alt="[+]"
         
     | 
| 
      
 115 
     | 
    
         
            +
            						title="show/hide quicksearch" /></span></h3>
         
     | 
| 
      
 116 
     | 
    
         
            +
            				<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
         
     | 
| 
      
 117 
     | 
    
         
            +
            				<fieldset>
         
     | 
| 
      
 118 
     | 
    
         
            +
            					<legend>Quicksearch</legend>
         
     | 
| 
      
 119 
     | 
    
         
            +
            					<input type="text" name="quicksearch" value=""
         
     | 
| 
      
 120 
     | 
    
         
            +
            						class="quicksearch-field" />
         
     | 
| 
      
 121 
     | 
    
         
            +
            				</fieldset>
         
     | 
| 
      
 122 
     | 
    
         
            +
            				</form>
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
            				<ul class="link-list">
         
     | 
| 
      
 125 
     | 
    
         
            +
            				
         
     | 
| 
      
 126 
     | 
    
         
            +
            					<li><a href="../Log4r.html">Log4r</a></li>
         
     | 
| 
      
 127 
     | 
    
         
            +
            				
         
     | 
| 
      
 128 
     | 
    
         
            +
            					<li><a href="../Log4r/BasicFormatter.html">Log4r::BasicFormatter</a></li>
         
     | 
| 
      
 129 
     | 
    
         
            +
            				
         
     | 
| 
      
 130 
     | 
    
         
            +
            					<li><a href="../Log4r/ConfigError.html">Log4r::ConfigError</a></li>
         
     | 
| 
      
 131 
     | 
    
         
            +
            				
         
     | 
| 
      
 132 
     | 
    
         
            +
            					<li><a href="../Log4r/Configurator.html">Log4r::Configurator</a></li>
         
     | 
| 
      
 133 
     | 
    
         
            +
            				
         
     | 
| 
      
 134 
     | 
    
         
            +
            					<li><a href="../Log4r/DateFileOutputter.html">Log4r::DateFileOutputter</a></li>
         
     | 
| 
      
 135 
     | 
    
         
            +
            				
         
     | 
| 
      
 136 
     | 
    
         
            +
            					<li><a href="../Log4r/DefaultFormatter.html">Log4r::DefaultFormatter</a></li>
         
     | 
| 
      
 137 
     | 
    
         
            +
            				
         
     | 
| 
      
 138 
     | 
    
         
            +
            					<li><a href="../Log4r/EmailOutputter.html">Log4r::EmailOutputter</a></li>
         
     | 
| 
      
 139 
     | 
    
         
            +
            				
         
     | 
| 
      
 140 
     | 
    
         
            +
            					<li><a href="../Log4r/FileOutputter.html">Log4r::FileOutputter</a></li>
         
     | 
| 
      
 141 
     | 
    
         
            +
            				
         
     | 
| 
      
 142 
     | 
    
         
            +
            					<li><a href="../Log4r/Formatter.html">Log4r::Formatter</a></li>
         
     | 
| 
      
 143 
     | 
    
         
            +
            				
         
     | 
| 
      
 144 
     | 
    
         
            +
            					<li><a href="../Log4r/GDC.html">Log4r::GDC</a></li>
         
     | 
| 
      
 145 
     | 
    
         
            +
            				
         
     | 
| 
      
 146 
     | 
    
         
            +
            					<li><a href="../Log4r/IOOutputter.html">Log4r::IOOutputter</a></li>
         
     | 
| 
      
 147 
     | 
    
         
            +
            				
         
     | 
| 
      
 148 
     | 
    
         
            +
            					<li><a href="../Log4r/Log4jXmlFormatter.html">Log4r::Log4jXmlFormatter</a></li>
         
     | 
| 
      
 149 
     | 
    
         
            +
            				
         
     | 
| 
      
 150 
     | 
    
         
            +
            					<li><a href="../Log4r/Log4rTools.html">Log4r::Log4rTools</a></li>
         
     | 
| 
      
 151 
     | 
    
         
            +
            				
         
     | 
| 
      
 152 
     | 
    
         
            +
            					<li><a href="../Log4r/LogEvent.html">Log4r::LogEvent</a></li>
         
     | 
| 
      
 153 
     | 
    
         
            +
            				
         
     | 
| 
      
 154 
     | 
    
         
            +
            					<li><a href="../Log4r/LogServer.html">Log4r::LogServer</a></li>
         
     | 
| 
      
 155 
     | 
    
         
            +
            				
         
     | 
| 
      
 156 
     | 
    
         
            +
            					<li><a href="../Log4r/Logger.html">Log4r::Logger</a></li>
         
     | 
| 
      
 157 
     | 
    
         
            +
            				
         
     | 
| 
      
 158 
     | 
    
         
            +
            					<li><a href="../Log4r/MDC.html">Log4r::MDC</a></li>
         
     | 
| 
      
 159 
     | 
    
         
            +
            				
         
     | 
| 
      
 160 
     | 
    
         
            +
            					<li><a href="../Log4r/NDC.html">Log4r::NDC</a></li>
         
     | 
| 
      
 161 
     | 
    
         
            +
            				
         
     | 
| 
      
 162 
     | 
    
         
            +
            					<li><a href="../Log4r/ObjectFormatter.html">Log4r::ObjectFormatter</a></li>
         
     | 
| 
      
 163 
     | 
    
         
            +
            				
         
     | 
| 
      
 164 
     | 
    
         
            +
            					<li><a href="../Log4r/Outputter.html">Log4r::Outputter</a></li>
         
     | 
| 
      
 165 
     | 
    
         
            +
            				
         
     | 
| 
      
 166 
     | 
    
         
            +
            					<li><a href="../Log4r/PatternFormatter.html">Log4r::PatternFormatter</a></li>
         
     | 
| 
      
 167 
     | 
    
         
            +
            				
         
     | 
| 
      
 168 
     | 
    
         
            +
            					<li><a href="../Log4r/RemoteOutputter.html">Log4r::RemoteOutputter</a></li>
         
     | 
| 
      
 169 
     | 
    
         
            +
            				
         
     | 
| 
      
 170 
     | 
    
         
            +
            					<li><a href="../Log4r/RollingFileOutputter.html">Log4r::RollingFileOutputter</a></li>
         
     | 
| 
      
 171 
     | 
    
         
            +
            				
         
     | 
| 
      
 172 
     | 
    
         
            +
            					<li><a href="../Log4r/RootLogger.html">Log4r::RootLogger</a></li>
         
     | 
| 
      
 173 
     | 
    
         
            +
            				
         
     | 
| 
      
 174 
     | 
    
         
            +
            					<li><a href="../Log4r/SimpleFormatter.html">Log4r::SimpleFormatter</a></li>
         
     | 
| 
      
 175 
     | 
    
         
            +
            				
         
     | 
| 
      
 176 
     | 
    
         
            +
            					<li><a href="../Log4r/StderrOutputter.html">Log4r::StderrOutputter</a></li>
         
     | 
| 
      
 177 
     | 
    
         
            +
            				
         
     | 
| 
      
 178 
     | 
    
         
            +
            					<li><a href="../Log4r/StdoutOutputter.html">Log4r::StdoutOutputter</a></li>
         
     | 
| 
      
 179 
     | 
    
         
            +
            				
         
     | 
| 
      
 180 
     | 
    
         
            +
            					<li><a href="../Log4r/SyslogOutputter.html">Log4r::SyslogOutputter</a></li>
         
     | 
| 
      
 181 
     | 
    
         
            +
            				
         
     | 
| 
      
 182 
     | 
    
         
            +
            					<li><a href="../Log4r/UDPOutputter.html">Log4r::UDPOutputter</a></li>
         
     | 
| 
      
 183 
     | 
    
         
            +
            				
         
     | 
| 
      
 184 
     | 
    
         
            +
            					<li><a href="../Log4r/YamlConfigurator.html">Log4r::YamlConfigurator</a></li>
         
     | 
| 
      
 185 
     | 
    
         
            +
            				
         
     | 
| 
      
 186 
     | 
    
         
            +
            				</ul>
         
     | 
| 
      
 187 
     | 
    
         
            +
            				<div id="no-class-search-results" style="display: none;">No matching classes.</div>
         
     | 
| 
      
 188 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 189 
     | 
    
         
            +
             
     | 
| 
      
 190 
     | 
    
         
            +
            			
         
     | 
| 
      
 191 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 192 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 193 
     | 
    
         
            +
             
     | 
| 
      
 194 
     | 
    
         
            +
            	<div id="documentation">
         
     | 
| 
      
 195 
     | 
    
         
            +
            		<h1 class="class">Log4r::StdoutOutputter</h1>
         
     | 
| 
      
 196 
     | 
    
         
            +
             
     | 
| 
      
 197 
     | 
    
         
            +
            		<div id="description">
         
     | 
| 
      
 198 
     | 
    
         
            +
            			<p>
         
     | 
| 
      
 199 
     | 
    
         
            +
            Same as IOOutputter(name, $stdout)
         
     | 
| 
      
 200 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
            		<!-- Constants -->
         
     | 
| 
      
 205 
     | 
    
         
            +
            		
         
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
      
 207 
     | 
    
         
            +
            		<!-- Attributes -->
         
     | 
| 
      
 208 
     | 
    
         
            +
            		
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
            		<!-- Methods -->
         
     | 
| 
      
 211 
     | 
    
         
            +
            		
         
     | 
| 
      
 212 
     | 
    
         
            +
            		<div id="public-class-method-details" class="method-section section">
         
     | 
| 
      
 213 
     | 
    
         
            +
            			<h3 class="section-header">Public Class Methods</h3>
         
     | 
| 
      
 214 
     | 
    
         
            +
             
     | 
| 
      
 215 
     | 
    
         
            +
            		
         
     | 
| 
      
 216 
     | 
    
         
            +
            			<div id="new-method" class="method-detail ">
         
     | 
| 
      
 217 
     | 
    
         
            +
            				<a name="M000079"></a>
         
     | 
| 
      
 218 
     | 
    
         
            +
             
     | 
| 
      
 219 
     | 
    
         
            +
            				<div class="method-heading">
         
     | 
| 
      
 220 
     | 
    
         
            +
            				
         
     | 
| 
      
 221 
     | 
    
         
            +
            					<span class="method-name">new</span><span
         
     | 
| 
      
 222 
     | 
    
         
            +
            						class="method-args">(_name, hash={})</span>
         
     | 
| 
      
 223 
     | 
    
         
            +
            					<span class="method-click-advice">click to toggle source</span>
         
     | 
| 
      
 224 
     | 
    
         
            +
            				
         
     | 
| 
      
 225 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 226 
     | 
    
         
            +
             
     | 
| 
      
 227 
     | 
    
         
            +
            				<div class="method-description">
         
     | 
| 
      
 228 
     | 
    
         
            +
            					
         
     | 
| 
      
 229 
     | 
    
         
            +
            					<p class="missing-docs">(Not documented)</p>
         
     | 
| 
      
 230 
     | 
    
         
            +
            					
         
     | 
| 
      
 231 
     | 
    
         
            +
             
     | 
| 
      
 232 
     | 
    
         
            +
            					
         
     | 
| 
      
 233 
     | 
    
         
            +
            					<div class="method-source-code"
         
     | 
| 
      
 234 
     | 
    
         
            +
            						id="new-source">
         
     | 
| 
      
 235 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 236 
     | 
    
         
            +
            <span class="ruby-comment cmt"># File log4r/outputter/consoleoutputters.rb, line 7</span>
         
     | 
| 
      
 237 
     | 
    
         
            +
                <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">_name</span>, <span class="ruby-identifier">hash</span>={})
         
     | 
| 
      
 238 
     | 
    
         
            +
                  <span class="ruby-keyword kw">super</span>(<span class="ruby-identifier">_name</span>, <span class="ruby-identifier">$stdout</span>, <span class="ruby-identifier">hash</span>)
         
     | 
| 
      
 239 
     | 
    
         
            +
                <span class="ruby-keyword kw">end</span></pre>
         
     | 
| 
      
 240 
     | 
    
         
            +
            					</div>
         
     | 
| 
      
 241 
     | 
    
         
            +
            					
         
     | 
| 
      
 242 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 243 
     | 
    
         
            +
             
     | 
| 
      
 244 
     | 
    
         
            +
            				
         
     | 
| 
      
 245 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 246 
     | 
    
         
            +
             
     | 
| 
      
 247 
     | 
    
         
            +
            		
         
     | 
| 
      
 248 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 249 
     | 
    
         
            +
            	
         
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 252 
     | 
    
         
            +
             
     | 
| 
      
 253 
     | 
    
         
            +
             
     | 
| 
      
 254 
     | 
    
         
            +
            	<div id="rdoc-debugging-section-dump" class="debugging-section">
         
     | 
| 
      
 255 
     | 
    
         
            +
            	
         
     | 
| 
      
 256 
     | 
    
         
            +
            		<p>Disabled; run with --debug to generate this.</p>
         
     | 
| 
      
 257 
     | 
    
         
            +
            	
         
     | 
| 
      
 258 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 259 
     | 
    
         
            +
             
     | 
| 
      
 260 
     | 
    
         
            +
            	<div id="validator-badges">
         
     | 
| 
      
 261 
     | 
    
         
            +
            		<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
         
     | 
| 
      
 262 
     | 
    
         
            +
            		<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
         
     | 
| 
      
 263 
     | 
    
         
            +
            			Rdoc Generator</a> 1.1.6</small>.</p>
         
     | 
| 
      
 264 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 265 
     | 
    
         
            +
             
     | 
| 
      
 266 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 267 
     | 
    
         
            +
            </html>
         
     | 
| 
      
 268 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,551 @@ 
     | 
|
| 
      
 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>Class: Log4r::SyslogOutputter</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="class">
         
     | 
| 
      
 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/outputter/syslogoutputter_rb.html?TB_iframe=true&height=550&width=785"
         
     | 
| 
      
 32 
     | 
    
         
            +
            							class="thickbox" title="log4r/outputter/syslogoutputter.rb">log4r/outputter/syslogoutputter.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 
     | 
    
         
            +
            			<div id="parent-class-section" class="section">
         
     | 
| 
      
 46 
     | 
    
         
            +
            				<h3 class="section-header">Parent</h3>
         
     | 
| 
      
 47 
     | 
    
         
            +
            				
         
     | 
| 
      
 48 
     | 
    
         
            +
            				<p class="link">Outputter</p>
         
     | 
| 
      
 49 
     | 
    
         
            +
            				
         
     | 
| 
      
 50 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 51 
     | 
    
         
            +
            			
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            			<!-- Namespace Contents -->
         
     | 
| 
      
 54 
     | 
    
         
            +
            			
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            			<!-- Method Quickref -->
         
     | 
| 
      
 57 
     | 
    
         
            +
            			
         
     | 
| 
      
 58 
     | 
    
         
            +
            			<div id="method-list-section" class="section">
         
     | 
| 
      
 59 
     | 
    
         
            +
            				<h3 class="section-header">Methods</h3>
         
     | 
| 
      
 60 
     | 
    
         
            +
            				<ul class="link-list">
         
     | 
| 
      
 61 
     | 
    
         
            +
            					
         
     | 
| 
      
 62 
     | 
    
         
            +
            					<li><a href="#M000125">::new</a></li>
         
     | 
| 
      
 63 
     | 
    
         
            +
            					
         
     | 
| 
      
 64 
     | 
    
         
            +
            					<li><a href="#M000130">#canonical_log</a></li>
         
     | 
| 
      
 65 
     | 
    
         
            +
            					
         
     | 
| 
      
 66 
     | 
    
         
            +
            					<li><a href="#M000127">#close</a></li>
         
     | 
| 
      
 67 
     | 
    
         
            +
            					
         
     | 
| 
      
 68 
     | 
    
         
            +
            					<li><a href="#M000126">#closed?</a></li>
         
     | 
| 
      
 69 
     | 
    
         
            +
            					
         
     | 
| 
      
 70 
     | 
    
         
            +
            					<li><a href="#M000129">#get_levels_map</a></li>
         
     | 
| 
      
 71 
     | 
    
         
            +
            					
         
     | 
| 
      
 72 
     | 
    
         
            +
            					<li><a href="#M000128">#map_levels_by_name_to_syslog</a></li>
         
     | 
| 
      
 73 
     | 
    
         
            +
            					
         
     | 
| 
      
 74 
     | 
    
         
            +
            				</ul>
         
     | 
| 
      
 75 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 76 
     | 
    
         
            +
            			
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
            			<!-- Included Modules -->
         
     | 
| 
      
 79 
     | 
    
         
            +
            			
         
     | 
| 
      
 80 
     | 
    
         
            +
            			<div id="includes-section" class="section">
         
     | 
| 
      
 81 
     | 
    
         
            +
            				<h3 class="section-header">Included Modules</h3>
         
     | 
| 
      
 82 
     | 
    
         
            +
            				<ul class="link-list">
         
     | 
| 
      
 83 
     | 
    
         
            +
            				
         
     | 
| 
      
 84 
     | 
    
         
            +
            				
         
     | 
| 
      
 85 
     | 
    
         
            +
            					<li><span class="include">Syslog::Constants</span></li>
         
     | 
| 
      
 86 
     | 
    
         
            +
            				
         
     | 
| 
      
 87 
     | 
    
         
            +
            				
         
     | 
| 
      
 88 
     | 
    
         
            +
            				</ul>
         
     | 
| 
      
 89 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 90 
     | 
    
         
            +
            			
         
     | 
| 
      
 91 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
            		<div id="project-metadata">
         
     | 
| 
      
 94 
     | 
    
         
            +
            			
         
     | 
| 
      
 95 
     | 
    
         
            +
            			
         
     | 
| 
      
 96 
     | 
    
         
            +
            			<div id="fileindex-section" class="section project-section">
         
     | 
| 
      
 97 
     | 
    
         
            +
            				<h3 class="section-header">Files</h3>
         
     | 
| 
      
 98 
     | 
    
         
            +
            				<ul>
         
     | 
| 
      
 99 
     | 
    
         
            +
            				
         
     | 
| 
      
 100 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/GDC.html">GDC</a></li>
         
     | 
| 
      
 101 
     | 
    
         
            +
            				
         
     | 
| 
      
 102 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/MDC.html">MDC</a></li>
         
     | 
| 
      
 103 
     | 
    
         
            +
            				
         
     | 
| 
      
 104 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/NDC.html">NDC</a></li>
         
     | 
| 
      
 105 
     | 
    
         
            +
            				
         
     | 
| 
      
 106 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/configurator.html">configurator</a></li>
         
     | 
| 
      
 107 
     | 
    
         
            +
            				
         
     | 
| 
      
 108 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/emailoutputter.html">emailoutputter</a></li>
         
     | 
| 
      
 109 
     | 
    
         
            +
            				
         
     | 
| 
      
 110 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/formatter.html">formatter</a></li>
         
     | 
| 
      
 111 
     | 
    
         
            +
            				
         
     | 
| 
      
 112 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/log4r.html">log4r</a></li>
         
     | 
| 
      
 113 
     | 
    
         
            +
            				
         
     | 
| 
      
 114 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/logger.html">logger</a></li>
         
     | 
| 
      
 115 
     | 
    
         
            +
            				
         
     | 
| 
      
 116 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/logserver.html">logserver</a></li>
         
     | 
| 
      
 117 
     | 
    
         
            +
            				
         
     | 
| 
      
 118 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/outputter.html">outputter</a></li>
         
     | 
| 
      
 119 
     | 
    
         
            +
            				
         
     | 
| 
      
 120 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/patternformatter.html">patternformatter</a></li>
         
     | 
| 
      
 121 
     | 
    
         
            +
            				
         
     | 
| 
      
 122 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/syslogoutputter.html">syslogoutputter</a></li>
         
     | 
| 
      
 123 
     | 
    
         
            +
            				
         
     | 
| 
      
 124 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/win32eventoutputter.html">win32eventoutputter</a></li>
         
     | 
| 
      
 125 
     | 
    
         
            +
            				
         
     | 
| 
      
 126 
     | 
    
         
            +
            					<li class="file"><a href="../log4r/rdoc/yamlconfigurator.html">yamlconfigurator</a></li>
         
     | 
| 
      
 127 
     | 
    
         
            +
            				
         
     | 
| 
      
 128 
     | 
    
         
            +
            				</ul>
         
     | 
| 
      
 129 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 130 
     | 
    
         
            +
            			
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
            			<div id="classindex-section" class="section project-section">
         
     | 
| 
      
 133 
     | 
    
         
            +
            				<h3 class="section-header">Class Index
         
     | 
| 
      
 134 
     | 
    
         
            +
            					<span class="search-toggle"><img src="../images/find.png"
         
     | 
| 
      
 135 
     | 
    
         
            +
            						height="16" width="16" alt="[+]"
         
     | 
| 
      
 136 
     | 
    
         
            +
            						title="show/hide quicksearch" /></span></h3>
         
     | 
| 
      
 137 
     | 
    
         
            +
            				<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
         
     | 
| 
      
 138 
     | 
    
         
            +
            				<fieldset>
         
     | 
| 
      
 139 
     | 
    
         
            +
            					<legend>Quicksearch</legend>
         
     | 
| 
      
 140 
     | 
    
         
            +
            					<input type="text" name="quicksearch" value=""
         
     | 
| 
      
 141 
     | 
    
         
            +
            						class="quicksearch-field" />
         
     | 
| 
      
 142 
     | 
    
         
            +
            				</fieldset>
         
     | 
| 
      
 143 
     | 
    
         
            +
            				</form>
         
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
            				<ul class="link-list">
         
     | 
| 
      
 146 
     | 
    
         
            +
            				
         
     | 
| 
      
 147 
     | 
    
         
            +
            					<li><a href="../Log4r.html">Log4r</a></li>
         
     | 
| 
      
 148 
     | 
    
         
            +
            				
         
     | 
| 
      
 149 
     | 
    
         
            +
            					<li><a href="../Log4r/BasicFormatter.html">Log4r::BasicFormatter</a></li>
         
     | 
| 
      
 150 
     | 
    
         
            +
            				
         
     | 
| 
      
 151 
     | 
    
         
            +
            					<li><a href="../Log4r/ConfigError.html">Log4r::ConfigError</a></li>
         
     | 
| 
      
 152 
     | 
    
         
            +
            				
         
     | 
| 
      
 153 
     | 
    
         
            +
            					<li><a href="../Log4r/Configurator.html">Log4r::Configurator</a></li>
         
     | 
| 
      
 154 
     | 
    
         
            +
            				
         
     | 
| 
      
 155 
     | 
    
         
            +
            					<li><a href="../Log4r/DateFileOutputter.html">Log4r::DateFileOutputter</a></li>
         
     | 
| 
      
 156 
     | 
    
         
            +
            				
         
     | 
| 
      
 157 
     | 
    
         
            +
            					<li><a href="../Log4r/DefaultFormatter.html">Log4r::DefaultFormatter</a></li>
         
     | 
| 
      
 158 
     | 
    
         
            +
            				
         
     | 
| 
      
 159 
     | 
    
         
            +
            					<li><a href="../Log4r/EmailOutputter.html">Log4r::EmailOutputter</a></li>
         
     | 
| 
      
 160 
     | 
    
         
            +
            				
         
     | 
| 
      
 161 
     | 
    
         
            +
            					<li><a href="../Log4r/FileOutputter.html">Log4r::FileOutputter</a></li>
         
     | 
| 
      
 162 
     | 
    
         
            +
            				
         
     | 
| 
      
 163 
     | 
    
         
            +
            					<li><a href="../Log4r/Formatter.html">Log4r::Formatter</a></li>
         
     | 
| 
      
 164 
     | 
    
         
            +
            				
         
     | 
| 
      
 165 
     | 
    
         
            +
            					<li><a href="../Log4r/GDC.html">Log4r::GDC</a></li>
         
     | 
| 
      
 166 
     | 
    
         
            +
            				
         
     | 
| 
      
 167 
     | 
    
         
            +
            					<li><a href="../Log4r/IOOutputter.html">Log4r::IOOutputter</a></li>
         
     | 
| 
      
 168 
     | 
    
         
            +
            				
         
     | 
| 
      
 169 
     | 
    
         
            +
            					<li><a href="../Log4r/Log4jXmlFormatter.html">Log4r::Log4jXmlFormatter</a></li>
         
     | 
| 
      
 170 
     | 
    
         
            +
            				
         
     | 
| 
      
 171 
     | 
    
         
            +
            					<li><a href="../Log4r/Log4rTools.html">Log4r::Log4rTools</a></li>
         
     | 
| 
      
 172 
     | 
    
         
            +
            				
         
     | 
| 
      
 173 
     | 
    
         
            +
            					<li><a href="../Log4r/LogEvent.html">Log4r::LogEvent</a></li>
         
     | 
| 
      
 174 
     | 
    
         
            +
            				
         
     | 
| 
      
 175 
     | 
    
         
            +
            					<li><a href="../Log4r/LogServer.html">Log4r::LogServer</a></li>
         
     | 
| 
      
 176 
     | 
    
         
            +
            				
         
     | 
| 
      
 177 
     | 
    
         
            +
            					<li><a href="../Log4r/Logger.html">Log4r::Logger</a></li>
         
     | 
| 
      
 178 
     | 
    
         
            +
            				
         
     | 
| 
      
 179 
     | 
    
         
            +
            					<li><a href="../Log4r/MDC.html">Log4r::MDC</a></li>
         
     | 
| 
      
 180 
     | 
    
         
            +
            				
         
     | 
| 
      
 181 
     | 
    
         
            +
            					<li><a href="../Log4r/NDC.html">Log4r::NDC</a></li>
         
     | 
| 
      
 182 
     | 
    
         
            +
            				
         
     | 
| 
      
 183 
     | 
    
         
            +
            					<li><a href="../Log4r/ObjectFormatter.html">Log4r::ObjectFormatter</a></li>
         
     | 
| 
      
 184 
     | 
    
         
            +
            				
         
     | 
| 
      
 185 
     | 
    
         
            +
            					<li><a href="../Log4r/Outputter.html">Log4r::Outputter</a></li>
         
     | 
| 
      
 186 
     | 
    
         
            +
            				
         
     | 
| 
      
 187 
     | 
    
         
            +
            					<li><a href="../Log4r/PatternFormatter.html">Log4r::PatternFormatter</a></li>
         
     | 
| 
      
 188 
     | 
    
         
            +
            				
         
     | 
| 
      
 189 
     | 
    
         
            +
            					<li><a href="../Log4r/RemoteOutputter.html">Log4r::RemoteOutputter</a></li>
         
     | 
| 
      
 190 
     | 
    
         
            +
            				
         
     | 
| 
      
 191 
     | 
    
         
            +
            					<li><a href="../Log4r/RollingFileOutputter.html">Log4r::RollingFileOutputter</a></li>
         
     | 
| 
      
 192 
     | 
    
         
            +
            				
         
     | 
| 
      
 193 
     | 
    
         
            +
            					<li><a href="../Log4r/RootLogger.html">Log4r::RootLogger</a></li>
         
     | 
| 
      
 194 
     | 
    
         
            +
            				
         
     | 
| 
      
 195 
     | 
    
         
            +
            					<li><a href="../Log4r/SimpleFormatter.html">Log4r::SimpleFormatter</a></li>
         
     | 
| 
      
 196 
     | 
    
         
            +
            				
         
     | 
| 
      
 197 
     | 
    
         
            +
            					<li><a href="../Log4r/StderrOutputter.html">Log4r::StderrOutputter</a></li>
         
     | 
| 
      
 198 
     | 
    
         
            +
            				
         
     | 
| 
      
 199 
     | 
    
         
            +
            					<li><a href="../Log4r/StdoutOutputter.html">Log4r::StdoutOutputter</a></li>
         
     | 
| 
      
 200 
     | 
    
         
            +
            				
         
     | 
| 
      
 201 
     | 
    
         
            +
            					<li><a href="../Log4r/SyslogOutputter.html">Log4r::SyslogOutputter</a></li>
         
     | 
| 
      
 202 
     | 
    
         
            +
            				
         
     | 
| 
      
 203 
     | 
    
         
            +
            					<li><a href="../Log4r/UDPOutputter.html">Log4r::UDPOutputter</a></li>
         
     | 
| 
      
 204 
     | 
    
         
            +
            				
         
     | 
| 
      
 205 
     | 
    
         
            +
            					<li><a href="../Log4r/YamlConfigurator.html">Log4r::YamlConfigurator</a></li>
         
     | 
| 
      
 206 
     | 
    
         
            +
            				
         
     | 
| 
      
 207 
     | 
    
         
            +
            				</ul>
         
     | 
| 
      
 208 
     | 
    
         
            +
            				<div id="no-class-search-results" style="display: none;">No matching classes.</div>
         
     | 
| 
      
 209 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
            			
         
     | 
| 
      
 212 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 213 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 214 
     | 
    
         
            +
             
     | 
| 
      
 215 
     | 
    
         
            +
            	<div id="documentation">
         
     | 
| 
      
 216 
     | 
    
         
            +
            		<h1 class="class">Log4r::SyslogOutputter</h1>
         
     | 
| 
      
 217 
     | 
    
         
            +
             
     | 
| 
      
 218 
     | 
    
         
            +
            		<div id="description">
         
     | 
| 
      
 219 
     | 
    
         
            +
            			
         
     | 
| 
      
 220 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 221 
     | 
    
         
            +
             
     | 
| 
      
 222 
     | 
    
         
            +
            		<!-- Constants -->
         
     | 
| 
      
 223 
     | 
    
         
            +
            		
         
     | 
| 
      
 224 
     | 
    
         
            +
            		<div id="constants-list" class="section">
         
     | 
| 
      
 225 
     | 
    
         
            +
            			<h3 class="section-header">Constants</h3>
         
     | 
| 
      
 226 
     | 
    
         
            +
            			<dl>
         
     | 
| 
      
 227 
     | 
    
         
            +
            			
         
     | 
| 
      
 228 
     | 
    
         
            +
            				<dt><a name="SYSLOG_LEVELS_MAP">SYSLOG_LEVELS_MAP</a></dt>
         
     | 
| 
      
 229 
     | 
    
         
            +
            				
         
     | 
| 
      
 230 
     | 
    
         
            +
            				<dd class="description"><p>
         
     | 
| 
      
 231 
     | 
    
         
            +
            maps default log4r levels to syslog priorities (logevents never see ALL and
         
     | 
| 
      
 232 
     | 
    
         
            +
            OFF) SYSLOG Levels are:
         
     | 
| 
      
 233 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 234 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 235 
     | 
    
         
            +
             "DEBUG"  => Syslog::LOG_DEBUG
         
     | 
| 
      
 236 
     | 
    
         
            +
             "INFO"   => Syslog::LOG_INFO
         
     | 
| 
      
 237 
     | 
    
         
            +
             "NOTICE" => Syslog::LOG_NOTICE
         
     | 
| 
      
 238 
     | 
    
         
            +
             "WARN"   => Syslog::LOG_WARN
         
     | 
| 
      
 239 
     | 
    
         
            +
             "ERROR"  => Syslog::LOG_ERROR
         
     | 
| 
      
 240 
     | 
    
         
            +
             "FATAL"  => Syslog::LOG_FATAL
         
     | 
| 
      
 241 
     | 
    
         
            +
             "ALERT"  => Syslog::LOG_ALERT
         
     | 
| 
      
 242 
     | 
    
         
            +
             "EMERG"  => Syslog::LOG_EMERG
         
     | 
| 
      
 243 
     | 
    
         
            +
            </pre></dd>
         
     | 
| 
      
 244 
     | 
    
         
            +
            				
         
     | 
| 
      
 245 
     | 
    
         
            +
            			
         
     | 
| 
      
 246 
     | 
    
         
            +
            				<dt><a name="SYSLOG_LOG4R_MAP">SYSLOG_LOG4R_MAP</a></dt>
         
     | 
| 
      
 247 
     | 
    
         
            +
            				
         
     | 
| 
      
 248 
     | 
    
         
            +
            				<dd class="description"><p>
         
     | 
| 
      
 249 
     | 
    
         
            +
            mapping from <a href="../Log4r.html">Log4r</a> default levels to syslog, by
         
     | 
| 
      
 250 
     | 
    
         
            +
            string name “DEBUG” => “DEBUG“
         
     | 
| 
      
 251 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 252 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 253 
     | 
    
         
            +
             "INFO"   => "INFO"
         
     | 
| 
      
 254 
     | 
    
         
            +
             "WARN"   => "WARN"
         
     | 
| 
      
 255 
     | 
    
         
            +
             "ERROR"  => "ERROR"
         
     | 
| 
      
 256 
     | 
    
         
            +
             "FATAL"  => "FATAL"
         
     | 
| 
      
 257 
     | 
    
         
            +
            </pre></dd>
         
     | 
| 
      
 258 
     | 
    
         
            +
            				
         
     | 
| 
      
 259 
     | 
    
         
            +
            			
         
     | 
| 
      
 260 
     | 
    
         
            +
            			</dl>
         
     | 
| 
      
 261 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 262 
     | 
    
         
            +
            		
         
     | 
| 
      
 263 
     | 
    
         
            +
             
     | 
| 
      
 264 
     | 
    
         
            +
            		<!-- Attributes -->
         
     | 
| 
      
 265 
     | 
    
         
            +
            		
         
     | 
| 
      
 266 
     | 
    
         
            +
             
     | 
| 
      
 267 
     | 
    
         
            +
            		<!-- Methods -->
         
     | 
| 
      
 268 
     | 
    
         
            +
            		
         
     | 
| 
      
 269 
     | 
    
         
            +
            		<div id="public-class-method-details" class="method-section section">
         
     | 
| 
      
 270 
     | 
    
         
            +
            			<h3 class="section-header">Public Class Methods</h3>
         
     | 
| 
      
 271 
     | 
    
         
            +
             
     | 
| 
      
 272 
     | 
    
         
            +
            		
         
     | 
| 
      
 273 
     | 
    
         
            +
            			<div id="new-method" class="method-detail ">
         
     | 
| 
      
 274 
     | 
    
         
            +
            				<a name="M000125"></a>
         
     | 
| 
      
 275 
     | 
    
         
            +
             
     | 
| 
      
 276 
     | 
    
         
            +
            				<div class="method-heading">
         
     | 
| 
      
 277 
     | 
    
         
            +
            				
         
     | 
| 
      
 278 
     | 
    
         
            +
            					<span class="method-name">new</span><span
         
     | 
| 
      
 279 
     | 
    
         
            +
            						class="method-args">(_name, hash={})</span>
         
     | 
| 
      
 280 
     | 
    
         
            +
            					<span class="method-click-advice">click to toggle source</span>
         
     | 
| 
      
 281 
     | 
    
         
            +
            				
         
     | 
| 
      
 282 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 283 
     | 
    
         
            +
             
     | 
| 
      
 284 
     | 
    
         
            +
            				<div class="method-description">
         
     | 
| 
      
 285 
     | 
    
         
            +
            					
         
     | 
| 
      
 286 
     | 
    
         
            +
            					<p>
         
     | 
| 
      
 287 
     | 
    
         
            +
            There are 3 hash arguments
         
     | 
| 
      
 288 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 289 
     | 
    
         
            +
            <dl>
         
     | 
| 
      
 290 
     | 
    
         
            +
            <dt><tt>:ident</tt></dt><dd>syslog ident, defaults to _name
         
     | 
| 
      
 291 
     | 
    
         
            +
             
     | 
| 
      
 292 
     | 
    
         
            +
            </dd>
         
     | 
| 
      
 293 
     | 
    
         
            +
            <dt><tt>:logopt</tt></dt><dd>syslog logopt, defaults to LOG_PID | LOG_CONS
         
     | 
| 
      
 294 
     | 
    
         
            +
             
     | 
| 
      
 295 
     | 
    
         
            +
            </dd>
         
     | 
| 
      
 296 
     | 
    
         
            +
            <dt><tt>:facility</tt></dt><dd>syslog facility, defaults to LOG_USER
         
     | 
| 
      
 297 
     | 
    
         
            +
             
     | 
| 
      
 298 
     | 
    
         
            +
            </dd>
         
     | 
| 
      
 299 
     | 
    
         
            +
            </dl>
         
     | 
| 
      
 300 
     | 
    
         
            +
            					
         
     | 
| 
      
 301 
     | 
    
         
            +
             
     | 
| 
      
 302 
     | 
    
         
            +
            					
         
     | 
| 
      
 303 
     | 
    
         
            +
            					<div class="method-source-code"
         
     | 
| 
      
 304 
     | 
    
         
            +
            						id="new-source">
         
     | 
| 
      
 305 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 306 
     | 
    
         
            +
            <span class="ruby-comment cmt"># File log4r/outputter/syslogoutputter.rb, line 64</span>
         
     | 
| 
      
 307 
     | 
    
         
            +
                <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">_name</span>, <span class="ruby-identifier">hash</span>={})
         
     | 
| 
      
 308 
     | 
    
         
            +
                  <span class="ruby-keyword kw">super</span>(<span class="ruby-identifier">_name</span>, <span class="ruby-identifier">hash</span>)
         
     | 
| 
      
 309 
     | 
    
         
            +
                  <span class="ruby-identifier">ident</span> = (<span class="ruby-identifier">hash</span>[<span class="ruby-identifier">:ident</span>] <span class="ruby-keyword kw">or</span> <span class="ruby-identifier">hash</span>[<span class="ruby-value str">'ident'</span>] <span class="ruby-keyword kw">or</span> <span class="ruby-identifier">_name</span>)
         
     | 
| 
      
 310 
     | 
    
         
            +
                  <span class="ruby-identifier">logopt</span> = (<span class="ruby-identifier">hash</span>[<span class="ruby-identifier">:logopt</span>] <span class="ruby-keyword kw">or</span> <span class="ruby-identifier">hash</span>[<span class="ruby-value str">'logopt'</span>] <span class="ruby-keyword kw">or</span> <span class="ruby-constant">LOG_PID</span> <span class="ruby-operator">|</span> <span class="ruby-constant">LOG_CONS</span>).<span class="ruby-identifier">to_i</span>
         
     | 
| 
      
 311 
     | 
    
         
            +
                  <span class="ruby-identifier">facility</span> = (<span class="ruby-identifier">hash</span>[<span class="ruby-identifier">:facility</span>] <span class="ruby-keyword kw">or</span> <span class="ruby-identifier">hash</span>[<span class="ruby-value str">'facility'</span>] <span class="ruby-keyword kw">or</span> <span class="ruby-constant">LOG_USER</span>).<span class="ruby-identifier">to_i</span>
         
     | 
| 
      
 312 
     | 
    
         
            +
                  <span class="ruby-identifier">map_levels_by_name_to_syslog</span>()
         
     | 
| 
      
 313 
     | 
    
         
            +
                  <span class="ruby-keyword kw">if</span> ( <span class="ruby-constant">Syslog</span>.<span class="ruby-identifier">opened?</span> ) <span class="ruby-keyword kw">then</span>
         
     | 
| 
      
 314 
     | 
    
         
            +
                    <span class="ruby-constant">Logger</span>.<span class="ruby-identifier">log_internal</span> { <span class="ruby-value str">"Syslog already initialized, to alter, "</span> <span class="ruby-operator">+</span>
         
     | 
| 
      
 315 
     | 
    
         
            +
                      <span class="ruby-value str">"you must close first"</span>}
         
     | 
| 
      
 316 
     | 
    
         
            +
                  <span class="ruby-keyword kw">end</span>
         
     | 
| 
      
 317 
     | 
    
         
            +
                  <span class="ruby-ivar">@syslog</span> = ( <span class="ruby-constant">Syslog</span>.<span class="ruby-identifier">opened?</span> ) <span class="ruby-operator">?</span> <span class="ruby-constant">Syslog</span> <span class="ruby-operator">:</span> <span class="ruby-constant">Syslog</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">ident</span>, <span class="ruby-identifier">logopt</span>, <span class="ruby-identifier">facility</span>)
         
     | 
| 
      
 318 
     | 
    
         
            +
                <span class="ruby-keyword kw">end</span></pre>
         
     | 
| 
      
 319 
     | 
    
         
            +
            					</div>
         
     | 
| 
      
 320 
     | 
    
         
            +
            					
         
     | 
| 
      
 321 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 322 
     | 
    
         
            +
             
     | 
| 
      
 323 
     | 
    
         
            +
            				
         
     | 
| 
      
 324 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 325 
     | 
    
         
            +
             
     | 
| 
      
 326 
     | 
    
         
            +
            		
         
     | 
| 
      
 327 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 328 
     | 
    
         
            +
            	
         
     | 
| 
      
 329 
     | 
    
         
            +
            		<div id="public-instance-method-details" class="method-section section">
         
     | 
| 
      
 330 
     | 
    
         
            +
            			<h3 class="section-header">Public Instance Methods</h3>
         
     | 
| 
      
 331 
     | 
    
         
            +
             
     | 
| 
      
 332 
     | 
    
         
            +
            		
         
     | 
| 
      
 333 
     | 
    
         
            +
            			<div id="close-method" class="method-detail ">
         
     | 
| 
      
 334 
     | 
    
         
            +
            				<a name="M000127"></a>
         
     | 
| 
      
 335 
     | 
    
         
            +
             
     | 
| 
      
 336 
     | 
    
         
            +
            				<div class="method-heading">
         
     | 
| 
      
 337 
     | 
    
         
            +
            				
         
     | 
| 
      
 338 
     | 
    
         
            +
            					<span class="method-name">close</span><span
         
     | 
| 
      
 339 
     | 
    
         
            +
            						class="method-args">()</span>
         
     | 
| 
      
 340 
     | 
    
         
            +
            					<span class="method-click-advice">click to toggle source</span>
         
     | 
| 
      
 341 
     | 
    
         
            +
            				
         
     | 
| 
      
 342 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 343 
     | 
    
         
            +
             
     | 
| 
      
 344 
     | 
    
         
            +
            				<div class="method-description">
         
     | 
| 
      
 345 
     | 
    
         
            +
            					
         
     | 
| 
      
 346 
     | 
    
         
            +
            					<p class="missing-docs">(Not documented)</p>
         
     | 
| 
      
 347 
     | 
    
         
            +
            					
         
     | 
| 
      
 348 
     | 
    
         
            +
             
     | 
| 
      
 349 
     | 
    
         
            +
            					
         
     | 
| 
      
 350 
     | 
    
         
            +
            					<div class="method-source-code"
         
     | 
| 
      
 351 
     | 
    
         
            +
            						id="close-source">
         
     | 
| 
      
 352 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 353 
     | 
    
         
            +
            <span class="ruby-comment cmt"># File log4r/outputter/syslogoutputter.rb, line 81</span>
         
     | 
| 
      
 354 
     | 
    
         
            +
                <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">close</span>
         
     | 
| 
      
 355 
     | 
    
         
            +
                  <span class="ruby-ivar">@syslog</span>.<span class="ruby-identifier">close</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-ivar">@syslog</span>.<span class="ruby-identifier">nil?</span>
         
     | 
| 
      
 356 
     | 
    
         
            +
                  <span class="ruby-ivar">@level</span> = <span class="ruby-constant">OFF</span>
         
     | 
| 
      
 357 
     | 
    
         
            +
                  <span class="ruby-constant">OutputterFactory</span>.<span class="ruby-identifier">create_methods</span>(<span class="ruby-keyword kw">self</span>)
         
     | 
| 
      
 358 
     | 
    
         
            +
                  <span class="ruby-constant">Logger</span>.<span class="ruby-identifier">log_internal</span> {<span class="ruby-node">"Outputter '#{@name}' closed Syslog and set to OFF"</span>}
         
     | 
| 
      
 359 
     | 
    
         
            +
                <span class="ruby-keyword kw">end</span></pre>
         
     | 
| 
      
 360 
     | 
    
         
            +
            					</div>
         
     | 
| 
      
 361 
     | 
    
         
            +
            					
         
     | 
| 
      
 362 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 363 
     | 
    
         
            +
             
     | 
| 
      
 364 
     | 
    
         
            +
            				
         
     | 
| 
      
 365 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 366 
     | 
    
         
            +
             
     | 
| 
      
 367 
     | 
    
         
            +
            		
         
     | 
| 
      
 368 
     | 
    
         
            +
            			<div id="closed--method" class="method-detail ">
         
     | 
| 
      
 369 
     | 
    
         
            +
            				<a name="M000126"></a>
         
     | 
| 
      
 370 
     | 
    
         
            +
             
     | 
| 
      
 371 
     | 
    
         
            +
            				<div class="method-heading">
         
     | 
| 
      
 372 
     | 
    
         
            +
            				
         
     | 
| 
      
 373 
     | 
    
         
            +
            					<span class="method-name">closed?</span><span
         
     | 
| 
      
 374 
     | 
    
         
            +
            						class="method-args">()</span>
         
     | 
| 
      
 375 
     | 
    
         
            +
            					<span class="method-click-advice">click to toggle source</span>
         
     | 
| 
      
 376 
     | 
    
         
            +
            				
         
     | 
| 
      
 377 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 378 
     | 
    
         
            +
             
     | 
| 
      
 379 
     | 
    
         
            +
            				<div class="method-description">
         
     | 
| 
      
 380 
     | 
    
         
            +
            					
         
     | 
| 
      
 381 
     | 
    
         
            +
            					<p class="missing-docs">(Not documented)</p>
         
     | 
| 
      
 382 
     | 
    
         
            +
            					
         
     | 
| 
      
 383 
     | 
    
         
            +
             
     | 
| 
      
 384 
     | 
    
         
            +
            					
         
     | 
| 
      
 385 
     | 
    
         
            +
            					<div class="method-source-code"
         
     | 
| 
      
 386 
     | 
    
         
            +
            						id="closed--source">
         
     | 
| 
      
 387 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 388 
     | 
    
         
            +
            <span class="ruby-comment cmt"># File log4r/outputter/syslogoutputter.rb, line 77</span>
         
     | 
| 
      
 389 
     | 
    
         
            +
                <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">closed?</span>
         
     | 
| 
      
 390 
     | 
    
         
            +
                  <span class="ruby-keyword kw">return</span> <span class="ruby-operator">!</span><span class="ruby-ivar">@syslog</span>.<span class="ruby-identifier">opened?</span>
         
     | 
| 
      
 391 
     | 
    
         
            +
                <span class="ruby-keyword kw">end</span></pre>
         
     | 
| 
      
 392 
     | 
    
         
            +
            					</div>
         
     | 
| 
      
 393 
     | 
    
         
            +
            					
         
     | 
| 
      
 394 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 395 
     | 
    
         
            +
             
     | 
| 
      
 396 
     | 
    
         
            +
            				
         
     | 
| 
      
 397 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 398 
     | 
    
         
            +
             
     | 
| 
      
 399 
     | 
    
         
            +
            		
         
     | 
| 
      
 400 
     | 
    
         
            +
            			<div id="get-levels-map-method" class="method-detail ">
         
     | 
| 
      
 401 
     | 
    
         
            +
            				<a name="M000129"></a>
         
     | 
| 
      
 402 
     | 
    
         
            +
             
     | 
| 
      
 403 
     | 
    
         
            +
            				<div class="method-heading">
         
     | 
| 
      
 404 
     | 
    
         
            +
            				
         
     | 
| 
      
 405 
     | 
    
         
            +
            					<span class="method-name">get_levels_map</span><span
         
     | 
| 
      
 406 
     | 
    
         
            +
            						class="method-args">()</span>
         
     | 
| 
      
 407 
     | 
    
         
            +
            					<span class="method-click-advice">click to toggle source</span>
         
     | 
| 
      
 408 
     | 
    
         
            +
            				
         
     | 
| 
      
 409 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 410 
     | 
    
         
            +
             
     | 
| 
      
 411 
     | 
    
         
            +
            				<div class="method-description">
         
     | 
| 
      
 412 
     | 
    
         
            +
            					
         
     | 
| 
      
 413 
     | 
    
         
            +
            					<p class="missing-docs">(Not documented)</p>
         
     | 
| 
      
 414 
     | 
    
         
            +
            					
         
     | 
| 
      
 415 
     | 
    
         
            +
             
     | 
| 
      
 416 
     | 
    
         
            +
            					
         
     | 
| 
      
 417 
     | 
    
         
            +
            					<div class="method-source-code"
         
     | 
| 
      
 418 
     | 
    
         
            +
            						id="get-levels-map-source">
         
     | 
| 
      
 419 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 420 
     | 
    
         
            +
            <span class="ruby-comment cmt"># File log4r/outputter/syslogoutputter.rb, line 110</span>
         
     | 
| 
      
 421 
     | 
    
         
            +
                <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">get_levels_map</span>()
         
     | 
| 
      
 422 
     | 
    
         
            +
                  <span class="ruby-keyword kw">return</span> <span class="ruby-ivar">@levels_map</span>
         
     | 
| 
      
 423 
     | 
    
         
            +
                <span class="ruby-keyword kw">end</span></pre>
         
     | 
| 
      
 424 
     | 
    
         
            +
            					</div>
         
     | 
| 
      
 425 
     | 
    
         
            +
            					
         
     | 
| 
      
 426 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 427 
     | 
    
         
            +
             
     | 
| 
      
 428 
     | 
    
         
            +
            				
         
     | 
| 
      
 429 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 430 
     | 
    
         
            +
             
     | 
| 
      
 431 
     | 
    
         
            +
            		
         
     | 
| 
      
 432 
     | 
    
         
            +
            			<div id="map-levels-by-name-to-syslog-method" class="method-detail ">
         
     | 
| 
      
 433 
     | 
    
         
            +
            				<a name="M000128"></a>
         
     | 
| 
      
 434 
     | 
    
         
            +
             
     | 
| 
      
 435 
     | 
    
         
            +
            				<div class="method-heading">
         
     | 
| 
      
 436 
     | 
    
         
            +
            				
         
     | 
| 
      
 437 
     | 
    
         
            +
            					<span class="method-name">map_levels_by_name_to_syslog</span><span
         
     | 
| 
      
 438 
     | 
    
         
            +
            						class="method-args">( lmap = SYSLOG_LOG4R_MAP )</span>
         
     | 
| 
      
 439 
     | 
    
         
            +
            					<span class="method-click-advice">click to toggle source</span>
         
     | 
| 
      
 440 
     | 
    
         
            +
            				
         
     | 
| 
      
 441 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 442 
     | 
    
         
            +
             
     | 
| 
      
 443 
     | 
    
         
            +
            				<div class="method-description">
         
     | 
| 
      
 444 
     | 
    
         
            +
            					
         
     | 
| 
      
 445 
     | 
    
         
            +
            					<p>
         
     | 
| 
      
 446 
     | 
    
         
            +
            A single hash argument that maps custom names to syslog names
         
     | 
| 
      
 447 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 448 
     | 
    
         
            +
            <dl>
         
     | 
| 
      
 449 
     | 
    
         
            +
            <dt><tt>levels_map</tt></dt><dd>A map that will create a linkage between levels in a hash and underlying
         
     | 
| 
      
 450 
     | 
    
         
            +
            syslog levels. By default, these are direct mapping of the log4r levels
         
     | 
| 
      
 451 
     | 
    
         
            +
            (e.g. “DEBUG” => “DEBUG”) If you have defined your
         
     | 
| 
      
 452 
     | 
    
         
            +
            own custom levels, you should provide this underlying mapping, otherwise
         
     | 
| 
      
 453 
     | 
    
         
            +
            all messages will be mapped to the underlying syslog level of INFO by
         
     | 
| 
      
 454 
     | 
    
         
            +
            default. e.g. You have created custom levels called: <tt><a
         
     | 
| 
      
 455 
     | 
    
         
            +
            href="Configurator.html#M000014">Configurator.custom_levels</a>
         
     | 
| 
      
 456 
     | 
    
         
            +
            "HIGH", "MEDIUM", "LOW"</tt> To map these to
         
     | 
| 
      
 457 
     | 
    
         
            +
            ‘equivilent’ syslog levels, after instantiatin a
         
     | 
| 
      
 458 
     | 
    
         
            +
            syslogoutputter: <tt><a
         
     | 
| 
      
 459 
     | 
    
         
            +
            href="SyslogOutputter.html#M000128">SyslogOutputter.map_levels_by_name_to_syslog</a>(
         
     | 
| 
      
 460 
     | 
    
         
            +
            { "HIGH" => "ALERT", "MEDIUM" =>
         
     | 
| 
      
 461 
     | 
    
         
            +
            "WARN", "LOW" => "INFO" } )</tt>
         
     | 
| 
      
 462 
     | 
    
         
            +
             
     | 
| 
      
 463 
     | 
    
         
            +
            </dd>
         
     | 
| 
      
 464 
     | 
    
         
            +
            </dl>
         
     | 
| 
      
 465 
     | 
    
         
            +
            					
         
     | 
| 
      
 466 
     | 
    
         
            +
             
     | 
| 
      
 467 
     | 
    
         
            +
            					
         
     | 
| 
      
 468 
     | 
    
         
            +
            					<div class="method-source-code"
         
     | 
| 
      
 469 
     | 
    
         
            +
            						id="map-levels-by-name-to-syslog-source">
         
     | 
| 
      
 470 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 471 
     | 
    
         
            +
            <span class="ruby-comment cmt"># File log4r/outputter/syslogoutputter.rb, line 106</span>
         
     | 
| 
      
 472 
     | 
    
         
            +
                <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">map_levels_by_name_to_syslog</span>( <span class="ruby-identifier">lmap</span> = <span class="ruby-constant">SYSLOG_LOG4R_MAP</span> )
         
     | 
| 
      
 473 
     | 
    
         
            +
                  <span class="ruby-ivar">@levels_map</span> = <span class="ruby-identifier">lmap</span>
         
     | 
| 
      
 474 
     | 
    
         
            +
                <span class="ruby-keyword kw">end</span></pre>
         
     | 
| 
      
 475 
     | 
    
         
            +
            					</div>
         
     | 
| 
      
 476 
     | 
    
         
            +
            					
         
     | 
| 
      
 477 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 478 
     | 
    
         
            +
             
     | 
| 
      
 479 
     | 
    
         
            +
            				
         
     | 
| 
      
 480 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 481 
     | 
    
         
            +
             
     | 
| 
      
 482 
     | 
    
         
            +
            		
         
     | 
| 
      
 483 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 484 
     | 
    
         
            +
            	
         
     | 
| 
      
 485 
     | 
    
         
            +
            		<div id="private-instance-method-details" class="method-section section">
         
     | 
| 
      
 486 
     | 
    
         
            +
            			<h3 class="section-header">Private Instance Methods</h3>
         
     | 
| 
      
 487 
     | 
    
         
            +
             
     | 
| 
      
 488 
     | 
    
         
            +
            		
         
     | 
| 
      
 489 
     | 
    
         
            +
            			<div id="canonical-log-method" class="method-detail ">
         
     | 
| 
      
 490 
     | 
    
         
            +
            				<a name="M000130"></a>
         
     | 
| 
      
 491 
     | 
    
         
            +
             
     | 
| 
      
 492 
     | 
    
         
            +
            				<div class="method-heading">
         
     | 
| 
      
 493 
     | 
    
         
            +
            				
         
     | 
| 
      
 494 
     | 
    
         
            +
            					<span class="method-name">canonical_log</span><span
         
     | 
| 
      
 495 
     | 
    
         
            +
            						class="method-args">(logevent)</span>
         
     | 
| 
      
 496 
     | 
    
         
            +
            					<span class="method-click-advice">click to toggle source</span>
         
     | 
| 
      
 497 
     | 
    
         
            +
            				
         
     | 
| 
      
 498 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 499 
     | 
    
         
            +
             
     | 
| 
      
 500 
     | 
    
         
            +
            				<div class="method-description">
         
     | 
| 
      
 501 
     | 
    
         
            +
            					
         
     | 
| 
      
 502 
     | 
    
         
            +
            					<p class="missing-docs">(Not documented)</p>
         
     | 
| 
      
 503 
     | 
    
         
            +
            					
         
     | 
| 
      
 504 
     | 
    
         
            +
             
     | 
| 
      
 505 
     | 
    
         
            +
            					
         
     | 
| 
      
 506 
     | 
    
         
            +
            					<div class="method-source-code"
         
     | 
| 
      
 507 
     | 
    
         
            +
            						id="canonical-log-source">
         
     | 
| 
      
 508 
     | 
    
         
            +
            <pre>
         
     | 
| 
      
 509 
     | 
    
         
            +
            <span class="ruby-comment cmt"># File log4r/outputter/syslogoutputter.rb, line 116</span>
         
     | 
| 
      
 510 
     | 
    
         
            +
                <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">canonical_log</span>(<span class="ruby-identifier">logevent</span>)
         
     | 
| 
      
 511 
     | 
    
         
            +
                  <span class="ruby-identifier">pri</span> = <span class="ruby-constant">SYSLOG_LEVELS_MAP</span>[<span class="ruby-ivar">@levels_map</span>[<span class="ruby-constant">LNAMES</span>[<span class="ruby-identifier">logevent</span>.<span class="ruby-identifier">level</span>]]] <span class="ruby-keyword kw">rescue</span> <span class="ruby-identifier">pri</span> = <span class="ruby-constant">LOG_INFO</span>
         
     | 
| 
      
 512 
     | 
    
         
            +
                  <span class="ruby-identifier">o</span> = <span class="ruby-identifier">format</span>(<span class="ruby-identifier">logevent</span>)
         
     | 
| 
      
 513 
     | 
    
         
            +
                  <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">o</span>.<span class="ruby-identifier">kind_of?</span> <span class="ruby-constant">Exception</span> <span class="ruby-keyword kw">then</span>
         
     | 
| 
      
 514 
     | 
    
         
            +
                    <span class="ruby-identifier">msg</span> = <span class="ruby-node">"#{o.class} at (#{o.backtrace[0]}): #{o.message}"</span>
         
     | 
| 
      
 515 
     | 
    
         
            +
                  <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">o</span>.<span class="ruby-identifier">respond_to?</span> <span class="ruby-identifier">:to_str</span> <span class="ruby-keyword kw">then</span>
         
     | 
| 
      
 516 
     | 
    
         
            +
                    <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">o</span>.<span class="ruby-identifier">to_str</span>
         
     | 
| 
      
 517 
     | 
    
         
            +
                  <span class="ruby-keyword kw">else</span>
         
     | 
| 
      
 518 
     | 
    
         
            +
                    <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">o</span>.<span class="ruby-identifier">inspect</span>
         
     | 
| 
      
 519 
     | 
    
         
            +
                  <span class="ruby-keyword kw">end</span>
         
     | 
| 
      
 520 
     | 
    
         
            +
             
     | 
| 
      
 521 
     | 
    
         
            +
                  <span class="ruby-ivar">@syslog</span>.<span class="ruby-identifier">log</span>(<span class="ruby-identifier">pri</span>, <span class="ruby-value str">'%s'</span>, <span class="ruby-identifier">msg</span>)
         
     | 
| 
      
 522 
     | 
    
         
            +
                <span class="ruby-keyword kw">end</span></pre>
         
     | 
| 
      
 523 
     | 
    
         
            +
            					</div>
         
     | 
| 
      
 524 
     | 
    
         
            +
            					
         
     | 
| 
      
 525 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 526 
     | 
    
         
            +
             
     | 
| 
      
 527 
     | 
    
         
            +
            				
         
     | 
| 
      
 528 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 529 
     | 
    
         
            +
             
     | 
| 
      
 530 
     | 
    
         
            +
            		
         
     | 
| 
      
 531 
     | 
    
         
            +
            		</div>
         
     | 
| 
      
 532 
     | 
    
         
            +
            	
         
     | 
| 
      
 533 
     | 
    
         
            +
             
     | 
| 
      
 534 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 535 
     | 
    
         
            +
             
     | 
| 
      
 536 
     | 
    
         
            +
             
     | 
| 
      
 537 
     | 
    
         
            +
            	<div id="rdoc-debugging-section-dump" class="debugging-section">
         
     | 
| 
      
 538 
     | 
    
         
            +
            	
         
     | 
| 
      
 539 
     | 
    
         
            +
            		<p>Disabled; run with --debug to generate this.</p>
         
     | 
| 
      
 540 
     | 
    
         
            +
            	
         
     | 
| 
      
 541 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 542 
     | 
    
         
            +
             
     | 
| 
      
 543 
     | 
    
         
            +
            	<div id="validator-badges">
         
     | 
| 
      
 544 
     | 
    
         
            +
            		<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
         
     | 
| 
      
 545 
     | 
    
         
            +
            		<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
         
     | 
| 
      
 546 
     | 
    
         
            +
            			Rdoc Generator</a> 1.1.6</small>.</p>
         
     | 
| 
      
 547 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 548 
     | 
    
         
            +
             
     | 
| 
      
 549 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 550 
     | 
    
         
            +
            </html>
         
     | 
| 
      
 551 
     | 
    
         
            +
             
     |