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.5 and better.
Installation¶
Stable release¶
To install pyramid_exclog, run this command in your terminal:
$ pip install pyramid_exclog
If you don’t have pip installed, this Python installation guide can guide you through the process.
From sources¶
The sources for pyramid_exclog can be downloaded from the Github repo.
$ git clone https://github.com/Pylons/pyramid_exclog.git
Once you have a copy of the source, you can install it with:
$ pip install -e .
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:
1config = Configurator(...)
2config.include('pyramid_exclog')
Alternately you can use the pyramid.includes configuration value in your
.ini file:
1[app:myapp]
2pyramid.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# Begin logging configuration
2
3[loggers]
4keys = root, myapp
5
6[handlers]
7keys = console
8
9[formatters]
10keys = generic
11
12[logger_root]
13level = WARN
14handlers = console
15
16[logger_myapp]
17level = WARN
18handlers =
19qualname = myapp
20
21[handler_console]
22class = StreamHandler
23args = (sys.stderr,)
24level = NOTSET
25formatter = generic
26
27[formatter_generic]
28format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
29
30# 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 thekeysvalue of the[handlers]section.Append
, exc_formatterto thekeysvalue 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# Begin logging configuration
2
3[loggers]
4keys = root, myapp, exc_logger
5
6[handlers]
7keys = console, exc_handler
8
9[formatters]
10keys = generic, exc_formatter
11
12[logger_root]
13level = WARN
14handlers = console
15
16[logger_myapp]
17level = WARN
18handlers =
19qualname = myapp
20
21[logger_exc_logger]
22level = ERROR
23handlers = exc_handler
24qualname = exc_logger
25
26[handler_console]
27class = StreamHandler
28args = (sys.stderr,)
29level = NOTSET
30formatter = generic
31
32[handler_exc_handler]
33class = FileHandler
34args = ('%(here)s/exception.log',)
35level = ERROR
36formatter = exc_formatter
37
38[formatter_generic]
39format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
40
41[formatter_exc_formatter]
42format = %(asctime)s %(message)s
43
44# 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# Begin logging configuration
2
3[loggers]
4keys = root, myapp, exc_logger
5
6[handlers]
7keys = console, exc_handler
8
9[formatters]
10keys = generic, exc_formatter
11
12[logger_root]
13level = WARN
14handlers = console
15
16[logger_myapp]
17level = WARN
18handlers =
19qualname = myapp
20
21[logger_exc_logger]
22level = ERROR
23handlers = exc_handler
24qualname = exc_logger
25
26[handler_console]
27class = StreamHandler
28args = (sys.stderr,)
29level = NOTSET
30formatter = generic
31
32[handler_exc_handler]
33class = handlers.SMTPHandler
34args = (('localhost', 25), 'from@example.com', ['to@example.com'], 'myapp Exception')
35level = ERROR
36formatter = exc_formatter
37
38[formatter_generic]
39format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
40
41[formatter_exc_formatter]
42format = %(asctime)s %(message)s
43
44# 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 override this default in order to ignore custom exception types (or to re-enable logging “http exceptions”) 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_exclog.exclog_tween_factory
pyramid.tweens.excview_tween_factory
It usually belongs directly above the pyramid.tweens.excview_tween_factory
entry in the ptweens output, and will attempt to sort there by default as
the result of having config.include('pyramid_exclog') invoked.
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.