Development Team/Almanac/Python Standard Logging

From Sugar Labs
< Development Team‎ | Almanac
Revision as of 10:55, 9 July 2008 by 18.85.47.87 (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

How do I write to a log in my activity code?

Sugar uses python's standard logging. The following code shows how to output something at the debug log level. The log message will be written to the standard log output destination (usually the console).

   import logging
   _logger = logging.getLogger('annotate-activity')
   ...
        _logger.debug('starting activity')