vote up 10 vote down star
2

Today I was thinking about a Python project I wrote about a year back where I used logging pretty extensively. I remember having to comment out a lot of logging calls in inner-loop-like scenarios (the 90% code) because of the overhead (hotshot indicated it was one of my biggest bottlenecks).

I wonder now if there's some canonical way to programmatically strip out logging calls in Python applications without commenting and uncommenting all the time. I'd think you could use inspection/recompilation or bytecode manipulation to do something like this and target only the code objects that are causing bottlenecks. This way, you could add a manipulator as a post-compilation step and use a centralized configuration file, like so:

[Leave ERROR and above]
my_module.SomeClass.method_with_lots_of_warn_calls

[Leave WARN and above]
my_module.SomeOtherClass.method_with_lots_of_info_calls

[Leave INFO and above]
my_module.SomeWeirdClass.method_with_lots_of_debug_calls

Of course, you'd want to use it sparingly and probably with per-function granularity -- only for code objects that have shown logging to be a bottleneck. Anybody know of anything like this?

Note: There are a few things that make this more difficult to do in a performant manner because of dynamic typing and late binding. For example, any calls to a method named debug may have to be wrapped with an if not isinstance(log, Logger). In any case, I'm assuming all of the minor details can be overcome, either by a gentleman's agreement or some run-time checking. :-)

flag

Do you use the same root-level logger? i.e., logging.getLogger()? If so, you need to fix that first. If not, please provide some of the getLogger calls in those modules. – S.Lott Feb 7 at 1:14
@S.Lott: I use LOG = logging.getLogger(name) on a per-module basis, then call LOG.debug(msg) and the like. I don't really see how it's relevant, though. – cdleary Feb 7 at 7:55

6 Answers

vote up 4 vote down check

What about using logging.disable?

I've also found I had to use logging.isEnabledFor if the logging message is expensive to create.

link|flag
logging.isEnabledFor might work, since I think it was the calls into the Logger methods that look the time. I like this as a potential solution, despite the fact it's annoying to do conditional creation. I'm going to try to dig up the old code base and see if this works. – cdleary Feb 9 at 1:56
As it turns out, this is exactly how Logger.debug is implemented: svn.python.org/view/python/… – cdleary Feb 25 at 2:07
Actually, looking the logging code further, this is probably the optimization I need. getEffectiveLevel traverses the logger hierarchy, whereas disable will eliminate that traversal. Thanks! – cdleary Feb 25 at 2:14
vote up 2 vote down

As an imperfect shortcut, how about mocking out logging in specific modules using something like MiniMock?

For example, if my_module.py was:

import logging
class C(object):
    def __init__(self, *args, **kw):
        logging.info("Instantiating")

You would replace your use of my_module with:

from minimock import Mock
import my_module
my_module.logging = Mock('logging')
c = my_module.C()

You'd only have to do this once, before the initial import of the module.

Getting the level specific behaviour would be simple enough by mocking specific methods, or having logging.getLogger return a mock object with some methods impotent and others delegating to the real logging module.

In practice, you'd probably want to replace MiniMock with something simpler and faster; at the very least something which doesn't print usage to stdout! Of course, this doesn't handle the problem of module A importing logging from module B (and hence A also importing the log granularity of B)...

This will never be as fast as not running the log statements at all, but should be much faster than going all the way into the depths of the logging module only to discover this record shouldn't be logged after all.

link|flag
This actually sounds a lot more sane than bytecode manipulation, since bytecode manipulation techniques won't necessarily port across VMs. The only issue I see is that you could only figure out which method called you by stack trace inspection, which would also be slow, if I'm not mistaken. – cdleary Feb 7 at 0:45
Ah, ok.. so I was thinking the mock objects would be very dumb, not caring (or knowing) where they were called from. You would only have per-module configuration granularity, not per-function. Selecting which of your modules to inject mock objects into is your only flexibility I'm afraid. – Alabaster Codify Feb 7 at 1:14
vote up 2 vote down

You could try something like this:

# Create something that accepts anything
class Fake(object):
    def __getattr__(self, key):
        return self
    def __call__(self, *args, **kwargs):
        return True

# Replace the logging module
import sys
sys.modules["logging"] = Fake()

It essentially replaces (or initially fills in) the space for the logging module with an instance of Fake which simply takes in anything. You must run the above code (just once!) before the logging module is attempted to be used anywhere. Here is a test:

import logging

logging.basicConfig(level=logging.DEBUG,
                    format='%(asctime)s %(levelname)-8s %(message)s',
                    datefmt='%a, %d %b %Y %H:%M:%S',
                    filename='/temp/myapp.log',
                    filemode='w')
logging.debug('A debug message')
logging.info('Some information')
logging.warning('A shot across the bows')

With the above, nothing at all was logged, as was to be expected.

link|flag
So you have no way to selective turn on or off logging per module or by level? – Alabaster Codify Feb 8 at 16:15
vote up 1 vote down

I'd use some fancy logging decorator, or a bunch of them:

def doLogging(logTreshold):
    def logFunction(aFunc):
        def innerFunc(*args, **kwargs):
            if LOGLEVEL >= logTreshold:
                print ">>Called %s at %s"%(aFunc.__name__, time.strftime("%H:%M:%S"))
                print ">>Parameters: ", args, kwargs if kwargs else "" 
            try:
                return aFunc(*args, **kwargs)
            finally:
                print ">>%s took %s"%(aFunc.__name__, time.strftime("%H:%M:%S"))
        return innerFunc
    return logFunction

All you need is to declare LOGLEVEL constant in each module (or just globally and just import it in all modules) and then you can use it like this:

@doLogging(2.5)
def myPreciousFunction(one, two, three=4):
    print "I'm doing some fancy computations :-)"
    return

And if LOGLEVEL is no less than 2.5 you'll get output like this:

>>Called myPreciousFunction at 18:49:13
>>Parameters:  (1, 2) 
I'm doing some fancy computations :-)
>>myPreciousFunction took 18:49:13

As you can see, some work is needed for better handling of kwargs, so the default values will be printed if they are present, but that's another question.

You should probably use some logger module instead of raw print statements, but I wanted to focus on the decorator idea and avoid making code too long.

Anyway - with such decorator you get function-level logging, arbitrarily many log levels, ease of application to new function, and to disable logging you only need to set LOGLEVEL. And you can define different output streams/files for each function if you wish. You can write doLogging as:

 def doLogging(logThreshold, outStream=sys.stdout):
      .....
      print >>outStream, ">>Called %s at %s" etc.

And utilize log files defined on a per-function basis.

link|flag
I log things from inside the method using the logging module - your approach can only log things which are externally visible (args, kwargs, return value, and execution time). – cdleary Feb 8 at 3:45
You wrote about using logging on per-function granularity, and your pseudo-code example also hints something like this. My approach can be extended - you can add extra keyword parameter to your function. And that extra parameter will be a logger or dummy object, supplied by decorator :-) – Abgan Feb 9 at 9:12
Not an ideal solution, I agree, but - decorators are highly extensible aren't they? – Abgan Feb 9 at 9:12
I think the part you're missing is that the logging calls are being made from inside the function, and the call to Logger.debug itself is causing the slowdown. You really need to cut out those calls from within the method. – cdleary Feb 9 at 19:36
You could use a decorator to inspect the function's code and rewrite/recompile it, but that's basically equivalent to a bytecode post-processor. It actually might be nicer than post-processing now that I think about it, so +1 for pointing in a good direction! – cdleary Feb 9 at 19:38
vote up 1 vote down

This is an issue in my project as well--logging ends up on profiler reports pretty consistently.

I've used the _ast module before in a fork of PyFlakes (http://github.com/kevinw/pyflakes) ... and it is definitely possible to do what you suggest in your question--to inspect and inject guards before calls to logging methods (with your acknowledged caveat that you'd have to do some runtime type checking). See http://pyside.blogspot.com/2008/03/ast-compilation-from-python.html for a simple example.

Edit: I just noticed MetaPython on my planetpython.org feed--the example use case is removing log statements at import time.

Maybe the best solution would be for someone to reimplement logging as a C module, but I wouldn't be the first to jump at such an...opportunity :p

link|flag
vote up 1 vote down

I've also seen assert used in this fashion.

assert logging.warn('disable me with the -O option') == None

(I'm guessing that warn always returns none.. if not, you'll get an AssertionError

But really that's just a funny way of doing this:

if __debug__: logging.warn('disable me with the -O option')

When you run a script with that line in it with the -O option, the line will be removed from the optimized .pyo code. If, instead, you had your own variable, like in the following, you will have a conditional that is always executed (no matter what value the variable is), although a conditional should execute quicker than a function call:

my_debug = True
...
if my_debug: logging.warn('disable me by setting my_debug = False')

so if my understanding of debug is correct, it seems like a nice way to get rid of unnecessary logging calls. The flipside is that it also disables all of your asserts, so it is a problem if you need the asserts.

link|flag
Yeah, putting an assert in front of every call is way too ugly. Putting an if my_debug in front of everything is similarly undesirable and inelegant -- I was hoping for something to strip/modify them automatically. :-( Also, always use is None for explicit comparison to None. :-) – cdleary Apr 4 at 21:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.