Examples of usage:
from kivy.logger import Logger
Logger.notice('This is a notice')
Logger.debug('This is a notice')
try:
raise Exception('bleh')
except Exception, e:
Logger.exception(e)
Logger can be controled in the Kivy configuration.
Kivy default logger instance
Kivy history handler
alias of HistoryHandler