We set up logging like the django docs told us:
https://docs.djangoproject.com/en/2.1/topics/logging/#using-logging
# import the logging library
import logging
# Get an instance of a logger
logger = logging.getLogger(__name__)
def my_view(request, arg1, arg):
...
if bad_mojo:
# Log an error message
logger.error('Something went wrong!')
I want to avoid this line in every Python file which wants to log:
logger = logging.getLogger(__name__)
I want it simple:
logging.error('Something went wrong!')
But we want to keep one feature: We want to see the Python file name in the logging output.
Up to now we use this format:
'%(asctime)s %(name)s.%(funcName)s +%(lineno)s: %(levelname)-8s [%(process)d] %(message)s'
Example output:
2016-01-11 12:12:31 myapp.foo +68: ERROR Something went wrong
How to avoid logger = logging.getLogger(__name__)
?
what about pathname? from https://docs.python.org/2/library/logging.html#formatter-objects
/Users/jluc/kds2/wk/explore/test_so_41.py
/Users/jluc/kds2/wk/explore/test_so_41b.py
audrey:explore jluc$ python test_so_41.py
output:
You can use
logging.basicConfig
to define the default interface available throughlogging
as follows:This definition will now be used whenever you do the following anywhere in your application:
While
__name__
is not available, the equivalent (and other options) are available through the defaultLogRecord
attributes that can be used for error string formatting - includingmodule
,filename
andpathname
. The following is a two-script demonstration of this in action:scripta.py
scriptb.py
The logging definition is defined in
scripta.py
, with the addedmodule
parameter. Inscriptb.py
we simply need to importlogging
to get access to this defined default. When runningscripta.py
the following output is generated:Which shows the module (
scriptb
) where the logging of the error occurs.According to this answer you can continue to use any per-module configuration of logging from Django, by turning off Django handling and setting up the root handler as follows: