vote up 0 vote down star

If one iswriting a Django/ Google App Engine application and would like to have logs that are conveniently conspicuous based on color (i.e. errors in red), how does one set that up?

I've copied the helpful solution from this question, but I'm not sure how to integrate it into Django/Google App Engine.

I figured one would put the following in the application's main.py (i.e. essentially from the example here: Running Django on Google App Engine):

from contrib.utils import ColouredLogger # from the SO question above
logging.setLoggerClass(ColouredLogger)

... where contrib.utils is where I put airmind's code from the above link to his SO answer.

However, that doesn't seem to do anything to the output to the console for GAE, which continues to be in the original format + plain color.

Suggestions and input would be much appreciated.

Cheers, Brian

flag

2 Answers

vote up 0 vote down

The reset codes mentioned in the answer you linked to will work on a console in the local development server (but will likely take some tweaking - you'll have to chain it with the existing App Engine logging handler), but won't work in production, since in production log entries are output to an HTML page in your admin console.

You can, however, filter by log level in the admin console.

link|flag
Thanks for answering, Nick. It's the chaining part that I'm having trouble with. :) – Brian M. Hunt Aug 17 at 17:57
vote up 0 vote down

I don't believe that you should create a logger subclass just for this - airmind's answer is fine as far as creating a specialised Formatter and specifying its use on a StreamHandler. But there's no need for a logger subclass. In fact airmind's use of a logger class adds a handler to every logger created, which is not what you want.

The solution airmind gave only works for terminals which support ANSI escape sequences - are you sure that your console does support them?

link|flag
Thanks Vinay. Yes, my terminal supports ANSI colors. – Brian M. Hunt Aug 17 at 17:56

Your Answer

Get an OpenID
or

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