Python Standard Logging in Sugar
Jump to navigation
Jump to search
What is the overall structure of python standard logging that I will use in Sugar?
Sugar uses Python's <ref>Standard Logging</ref> pretty much without modification.
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')
Notes
<references />