How can I get the logging handler object instance(s) in django (>=1.3)? with standard python logging I instantiate the logger and then the handler:
h = logging.handlers.TimedRotatingFileHandler( FILE, 'D', 1)
I want h
or the array of h
's that django uses when i use its' LOGGING
dict in settings.py
. Any ideas?