How many times have you used a print instruction instead of logger.debug or logger.info? Well I used to do it frequently. The thing is, setting up a logger in an application that has many of its own, is problematic. There is a tool however that may help you identify the right place for your logger (or identify the logger you want to use).
~ $ pip install logging_tree
So what does this package do? In practice this is a logging introspection tool that recreates a tree structure of your current loggers (along with handlers and filters). This is very useful since you may immediately identify which logger you should use, or at least confirm that adding a new logger will be mandatory.
For example: if You type the following in a python terminal:
>>> import logging_tree
>>> logging_tree.printout()
<--""
Level WARNING
Well this is quite obvious, no modules are loaded, thus no custom logger was registered. On the other hand let's look at a logging tree of a young django app:
In [1]: import logging_tree
In [2]: logging_tree.printout()
<--""
Level WARNING
|
o<--"core"
| Level INFO
| Handler File '/tmp/wt.log'
|
o<--"django"
| Handler Stream <open file '<stderr>', mode 'w' at 0x7f21e9890270>
| Filter <django.utils.log.RequireDebugTrue object at 0x1676350>
| |
| o<--[django.db]
| | |
| | o<--"django.db.backends"
| |
| o<--"django.request"
| Level ERROR
| Handler <django.utils.log.AdminEmailHandler object at 0x1676790>
|
o<--"nose"
| |
| o<--"nose.case"
| |
| o<--"nose.config"
| |
| o<--"nose.core"
| |
| o<--"nose.failure"
| |
| o<--"nose.importer"
| |
| o<--"nose.inspector"
| |
| o<--"nose.loader"
| |
| o<--"nose.plugins"
| | |
| | o<--"nose.plugins.attrib"
| | |
| | o<--"nose.plugins.capture"
| | |
| | o<--"nose.plugins.collect"
| | |
| | o<--"nose.plugins.cover"
| | |
| | o<--"nose.plugins.doctests"
| | |
| | o<--"nose.plugins.isolation"
| | |
| | o<--"nose.plugins.logcapture"
| | |
| | o<--"nose.plugins.manager"
| | |
| | o<--"nose.plugins.multiprocess"
| | |
| | o<--"nose.plugins.testid"
| |
| o<--"nose.proxy"
| |
| o<--"nose.result"
| |
| o<--"nose.selector"
| |
| o<--"nose.suite"
|
o<--[py]
| |
| o<--"py.warnings"
| Handler Stream <open file '<stderr>', mode 'w' at 0x7f21e9890270>
| Filter <django.utils.log.RequireDebugTrue object at 0x1676350>
|
o<--"south"
Handler <south.logger.NullHandler object at 0x20c9350>
It's much easier to read this tree output than getting familiar with your applications logging configuration along with the documentation of other packages that are using the logging module.
Hope this saves You a lot of time.
Cheers!
KR
Showing posts with label logging. Show all posts
Showing posts with label logging. Show all posts
Thursday, February 21, 2013
Monday, September 24, 2012
Logging JavaScript exceptions using raven-js and sentry.
Let's face it, its hard to obtain 100% unit-test code coverage, likewise it's nearly impossible to implement functional tests for all possible scenarios. A good way of recognizing problems and locating them is logging exceptions and other informative messages. For small projects logging to std out/err or files is fine, but if there are hundreds of people exploiting your application every minute you should think of a more scalable solution.
Sentry is a good option, it's a real-time event logging platform that may be set-up as a standalone application. Other pros are:
~ virtualenv --no-site-packages sentry_env && cd sentry_env
~ source bin/activate
(sentry_env) ~ pip install sentry
(sentry_env) ~ sentry init
Now all you have to configure database access and other important parameters, check out the sentry configuration guide for more information.
But let's get back to the main thought. Among programming languages that have clients for sentry there is also JavaScript. This wouldn't be a surprise if not for the fact that (besides node.js) JS is usually executed on the client side (web browser). Raven-js (don't confuse it the client for RavenDB) can log messages / catch exceptions and send them via AJAX requests to your sentry application. In order to set up the logging script you should first configure sentry and create a project and obtain generated project public key. Then use the following code:
Setting up raven-js and observing how your scripts crash on IE is just priceless :-)
~KR
Sentry is a good option, it's a real-time event logging platform that may be set-up as a standalone application. Other pros are:
- support of different levels of logging / dynamic filtering
- logging data from many independent projects
- presistent log storing (database)
- user privilege configuration / email notification
- there are clients for many popular programming languages
- it's based on python/django
- it's based on python/django
- it's based on python/django
- ....
~ virtualenv --no-site-packages sentry_env && cd sentry_env
~ source bin/activate
(sentry_env) ~ pip install sentry
(sentry_env) ~ sentry init
Now all you have to configure database access and other important parameters, check out the sentry configuration guide for more information.
But let's get back to the main thought. Among programming languages that have clients for sentry there is also JavaScript. This wouldn't be a surprise if not for the fact that (besides node.js) JS is usually executed on the client side (web browser). Raven-js (don't confuse it the client for RavenDB) can log messages / catch exceptions and send them via AJAX requests to your sentry application. In order to set up the logging script you should first configure sentry and create a project and obtain generated project public key. Then use the following code:
Setting up raven-js and observing how your scripts crash on IE is just priceless :-)
~KR
Subscribe to:
Posts (Atom)