pyramid_exclog¶
Overview¶
A package which logs Pyramid application exception (error) information to a standard Python logger. This add-on is most useful when used in production applications, because the logger can be configured to log to a file, to UNIX syslog, to the Windows Event Log, or even to email.
Warning
This package will only work with Pyramid 1.2a1 and better.
Setup¶
Once pyramid_exclog is installed, you must use the config.include
mechanism to include it into your Pyramid project’s configuration. In your
Pyramid project’s __init__.py:
1 2 | config = Configurator(.....)
config.include('pyramid_exclog')
|
Alternately you can use the pyramid.includes configuration value in your
.ini file:
1 2 | [app:myapp]
pyramid.includes = pyramid_exclog
|
Using¶
When this add-on is included into your Pyramid application, whenever a
request to your application causes an exception to be raised, the add-on will
send the URL that caused the exception, the exception type, and its related
traceback information to a standard Python logger named
exc_logger.
You can use the logging configuration in your Pyramid application’s .ini
file to add a logger named exc_logger. This logger should be hooked up a
particular logging handler, which will allow you to use the standard Python
logging machinery to send your exceptions to a file, to syslog, or to an
email address.
It’s not generally useful to add exception logger configuration to a
development.ini file, because typically exceptions are displayed in the
interactive debugger and to the console which started the application, and
you really don’t care much about actually logging the exception
information. However, it’s very appropriate to add exception logger
configuration to a production.ini file.
The following logging configuration statements are in the default
production.ini file generated by all Pyramid scaffolding:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # Begin logging configuration
[loggers]
keys = root, myapp
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_myapp]
level = WARN
handlers =
qualname = myapp
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration
|
The standard logging configuration of the production.ini of a scaffolded
Pyramid application does not name a logger named exc_logger. Therefore,
to start making use of pyramid_exclog, you’ll have to add an
exc_logger logger to the configuration. To do so:
- Append
, exc_loggerto thekeysvalue of the[loggers]section, - Append
, exc_handlerto hekeysvalue of the[handlers]section. - Append
, exc_formatterto hekeysvalue of the[formatters]section. - Add a section named
[logger_exc_logger]with logger information related to the new exception logger. - Add a section named
[handler_exc_handler]with handler information related to the new exception logger. In our example, it will have configuration that tells it to log to a file in the same directory as the.inifile namedexception.log. - Add a section named
[formatter_exc_formatter]with message formatting information related to the messages sent to theexc_handlerhandler. By default we’ll send only the time and the message.
The resulting configuration will look like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # Begin logging configuration
[loggers]
keys = root, myapp, exc_logger
[handlers]
keys = console, exc_handler
[formatters]
keys = generic, exc_formatter
[logger_root]
level = WARN
handlers = console
[logger_myapp]
level = WARN
handlers =
qualname = myapp
[logger_exc_logger]
level = ERROR
handlers = exc_handler
qualname = exc_logger
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[handler_exc_handler]
class = FileHandler
args = ('%(here)s/exception.log',)
level = ERROR
formatter = exc_formatter
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
[formatter_exc_formatter]
format = %(asctime)s %(message)s
# End logging configuration
|
Once you’ve changed your logging configuration as per the above, and you
restart your Pyramid application, all exceptions will be logged to a file
named exceptions.log in the directory that the production.ini file
lives.
You can get fancier with logging as necessary by familiarizing yourself with
the Python logging module configuration format. For example, here’s an
alternate configuration that logs exceptions via email to a user named
from@example.com to a user named to@example.com via the SMTP server
on the local host at port 25; each email will have the subject myapp
Exception:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # Begin logging configuration
[loggers]
keys = root, myapp, exc_logger
[handlers]
keys = console, exc_handler
[formatters]
keys = generic, exc_formatter
[logger_root]
level = WARN
handlers = console
[logger_myapp]
level = WARN
handlers =
qualname = myapp
[logger_exc_logger]
level = ERROR
handlers = exc_handler
qualname = exc_logger
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[handler_exc_handler]
class = handlers.SMTPHandler
args = (('localhost', 25), 'from@example.com', ['to@example.com'], 'myapp Exception')
level = ERROR
formatter = exc_formatter
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
[formatter_exc_formatter]
format = %(asctime)s %(message)s
# End logging configuration
|
When the above configuration is used, exceptions will be sent via email instead of sent to a file.
For information about logging in general see the Pythong logging module
documentation. Practical
tips are contained within the Python logging cookbook.
More information about the the .ini logging file configuration format is
at
http://docs.python.org/library/logging.config.html#configuration-file-format
.
Settings¶
pyramid_exclog` also has some its own settings in the form of
configuration values which are meant to be placed in the [app:myapp]
section of your Pyramid’s .ini file. These are:
exclog.ignore
By default, the exception logging machinery will log all exceptions (even those eventually caught by a Pyramid exception view) except “http exceptions” (any exception that derives from the base class
pyramid.httpexceptions.WSGIHTTPExceptionsuch asHTTPFound). You can instructpyramid_exclogto ignore custom exception types by using theexcview.ignoreconfiguration setting.
excview.ignoreis a list of dotted Python names representing exception types (e.g.myapp.MyException) or builtin exception names (e.g.NotImplementedErrororKeyError) that represent exceptions which should never be logged. This list can be in the form of a whitespace-separated string, e.g.KeyError ValueError myapp.MyExceptionor it may consume multiple lines in the.inifile.This setting defaults to a list containing only
pyramid.httpexceptions.WSGIHTTPException.An example:
[app:myapp] exclog.ignore = pyramid.httpexceptions.WSGIHTTPException KeyError myapp.exceptions.MyException
exclog.extra_info
By default the only content in error messages is the URL that was accessed (retrieved from the url attribute of
pyramid.request.Request) and the exception information that is appended by Python’sLogger.exceptionfunction.If
exclog.extra_infois true the error message will also include the environ and params attributes ofpyramid.request.Requestformatted usingpprint.pformat(). The output frompyramid.security.unauthenticated_id()is also included.This setting defaults to false
An example:
[app:myapp] exclog.extra_info = true
exclog.get_message
If a customized error message is needed, the
exclog.get_messagesetting can be pointed at a function that takes a request as its only argument and returns a string. It can be either a dotted name or the actual function. For example:[app:myapp] exclog.get_message = myapp.somemodule.get_exc_log_messageIf
exclog.get_messageis set,exclog.extra_infowill be ignored.
Explicit “Tween” Configuration¶
Note that the exception logger is implemented as a Pyramid tween, and
it can be used in the explicit tween chain if its implicit position in the
tween chain is incorrect (see the output of ptweens):
[app:myapp]
pyramid.tweens = someothertween
pyramid.tweens.excview_tween_factory
pyramid_exclog.exclog_tween_factory
It usually belongs directly above the “MAIN” entry in the ptweens
output, and will attempt to sort there by default as the result of having
include('pyramid_exclog') invoked.
Putting it above the pyramid.tweens.excview_tween_factory will cause it
to log only exceptions that are not caught by an exception view.
Deployment under mod_wsgi¶
To make logging facilities available when loading an application via mod_wsgi, like it behaves with pserve, you must call the logging.fileConfig function on the ini file containing the logger entry.
Here’s an example of a run.wsgi file:
import os
from pyramid.paster import get_app, setup_logging
here = os.path.dirname(os.path.abspath(__file__))
conf = os.path.join(here, 'production.ini')
setup_logging(conf)
application = get_app(conf, 'main')
More Information¶
Reporting Bugs / Development Versions¶
Visit https://github.com/Pylons/pyramid_exclog to download development or tagged versions.
Visit https://github.com/Pylons/pyramid_exclog/issues to report bugs.