Screenshots
Reviews
Game Manual
Encyclopedia
Forums
Policies
Credits
Help!
Premium Features
Purchase




Undead Wars Expansion Announced!
Patch 1.26 Live!
Halloween Contest Winners Announced!
Technical Excellence Award!

Registration ServerUP
Master ServerUP
Premium ServersUP
Free ServersUP
Chat ServerUP


BellyFish

Shinky - Woah, a Forum?
lucasdeman2 - hooi
HawaiianFlyboy - Goodbye, Mirth
xXxKILLxXx - Tri :D
devinscog2000 - MoM Overview
FalynAngel - Couple of new things! including being a free age...
Queen Tashie - First Problem
Silencefell - Don't push the big red button.
... MORE BLOGS!

revealer vs druid
volitation
paladin vs warrior
Timed out.
Running really fast and cant tra...
Monster template List
SEEKING TWO MEMBERS FOR CRISP CH...
crimson shadows fully operationa...
Druid Flight Spell
Bar/Cler/xxx

Changes from Version 1 of TracLogging

Show
Ignore:
Author:
trac (IP: 127.0.0.1)
Timestamp:
08/21/07 05:44:47 (3 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracLogging

    v0 v1  
     1= Trac Logging = 
     2[[TracGuideToc]] 
     3 
     4Trac supports logging of system messages using the standard [http://docs.python.org/lib/module-logging.html logging module] that comes with Python. 
     5 
     6Logging is configured in the {{{[logging]}}} section in [wiki:TracIni trac.ini]. 
     7 
     8== Supported Logging Methods == 
     9 
     10The log method is set using the `log_type` configuration option, which takes any of the following values: 
     11 '''none'':: Suppress all log messages. 
     12 '''file''':: Log messages to a file, specified with the `log_file` option in [wiki:TracIni trac.ini].  
     13 '''stderr''':: Output all log entries to console ([wiki:TracStandalone tracd] only). 
     14 '''syslog''':: (UNIX) Send messages to local syslogd via named pipe `/dev/log`. 
     15 '''eventlog''':: (Windows) Use the system's NT eventlog for Trac logging. 
     16 
     17== Log Levels == 
     18 
     19The verbosity level of logged messages can be set using the ''log_level'' directive in [wiki:TracIni trac.ini]. The log level defines the minimum level of urgency required for a message to be logged. 
     20 
     21The levels are: 
     22 '''CRITICAL''':: Log only the most critical (typically fatal) errors. 
     23 '''ERROR''':: Log failures, bugs and errors.  
     24 '''WARN''':: Log warnings, non-interrupting events. 
     25 '''INFO''':: Diagnostic information, log information about all processing. 
     26 '''DEBUG''':: Trace messages, profiling, etc. 
     27 
     28---- 
     29See also: TracIni, TracGuide, TracEnvironment