Ignore:
Timestamp:
Jun 16, 2010, 2:50:06 PM (14 years ago)
Author:
steve
Message:

Changed the logging levels in log.py so that the information about openning the
file ./anuga.log is now only an info log as opposed to critical log. I.e. by default
doesn't write to the console.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/utilities/log.py

    r7810 r7848  
    126126                        logging.getLevelName(console_logging_level)))
    127127        if _new_python:
    128             logging.log(logging.CRITICAL, start_msg,
     128            logging.log(logging.INFO, start_msg,
    129129                        extra={'mname': __name__, 'lnum': 0})
    130130        else:
    131             logging.log(logging.CRITICAL, start_msg)
     131            logging.log(logging.INFO, start_msg)
    132132
    133133        # mark module as *setup*
Note: See TracChangeset for help on using the changeset viewer.