Shortened the usage syntax for the CrashReporters:
python
import log21
Define a ConsoleReporter object
console_reporter = log21.CrashReporter.ConsoleReporter()
This works with other `log21.CrashReporter.Reporter` subclasses as well.
Old syntax (still supported)
console_reporter.reporter
def divide_old(a, b):
return a / b
New Syntax
console_reporter.reporter
def divide_new(a, b):
return a / b
`console_crash_reporter` and `file_crash_reporter` are removed!