Coder Social home page Coder Social logo

python-logger-example's Introduction

Contrived example usage of python logger

Demonstration purposes only. This is perhaps a little unwieldly for most/some purposes. It demonstrates a settings.py to configure loggers; then using a custom logger which prefixes all log messages with a timestamp, log level, and the calling module/function name. This can be useful in verbose debug output, it's worth configuring a more concise output format for production use especially when the user's rsyslog daemon will already prefix log lines with a timestamp anyway...

Example invocations

Show output from both configured stderr/stdout loggers configured in my.settings:

$ ./mycomponent.py 
2015-04-22 17:14:27,034 DEBUG   __main__.<module>()     blah blah from __main__, calling do_stuff("things")
2015-04-22 17:14:27,034 ERROR   __main__.do_stuff()     blah from do_stuff(), calling my.foo.do_things("things")
2015-04-22 17:14:27,034 ERROR   __main__.do_stuff()     blah from do_stuff(), calling my.foo.do_things("things")
2015-04-22 17:14:27,035 INFO    my.foo.do_things()      Doing things: things

or redirect STDOUT so we're left with just STDERR logger:

$ ./mycomponent.py >/dev/null
2015-04-22 17:15:27,643 ERROR   __main__.do_stuff()     blah from do_stuff(), calling my.foo.do_things("things")

or redirect STDERR so we're left with just STDOUT logger:

$ ./mycomponent.py 2>/dev/null
2015-04-22 17:16:30,259 DEBUG   __main__.<module>()     blah blah from __main__, calling do_stuff("things")
2015-04-22 17:16:30,259 ERROR   __main__.do_stuff()     blah from do_stuff(), calling my.foo.do_things("things")
2015-04-22 17:16:30,259 INFO    my.foo.do_things()      Doing things: things

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.