Ignore:
Timestamp:
07/21/12 12:43:34 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Documented the non-GUI modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/logger.py

    r225 r298  
    1 # Module for the logging.
    2 
    3 #--------------------------------------------------------------------------------------
    41
    52from fs import sendMessage
     
    96import sys
    107import time
     8
     9#--------------------------------------------------------------------------------------
     10
     11## @package mlx.logger
     12#
     13# The module for the logger.
     14#
     15# While the program itself is "logger", it contains an internal logger, which
     16# maintains the textual log containing information on the various events and is
     17# the reason why the program is called "logger".
     18#
     19# The log is made up of lines containing an optional timestamp and the text of
     20# the message. A line can be updated after having been put into the log by
     21# referring to its index.
     22#
     23# The logger object also maintains a separate set of faults and ensures that
     24# one fault type has only one score, even if that fault has been reported
     25# multiple times.
    1126
    1227#--------------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.