LoggingΒΆ

Recommended logging usage pattern:

import logging

logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.INFO)
logging.debug('sys.path: %s', sys.path)

You can see such a pattern usage in various source files. Please consider using existing logging entries in that files instead of creating your own.

Project Versions

Previous topic

Clusterduster v1.3 documentation

Next topic

Some changes to the conf.py

This Page