Skip to content

pravi/mixlib-log

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mixlib::Log

Mixlib::Log provides a mixin for enabling a class based logger object, a-la Merb, Chef, and Nanite. To use it:

require ‘mixlib/log’ class Log extend Mixlib::Log end You can then do:

Log.debug(“foo”) Log.info(“bar”) Log.warn(“baz”) Log.error(“baz”) Log.fatal(“wewt”) By default, Mixlib::Logger logs to STDOUT. To alter this, you should call Log.init, passing any arguments to the standard Ruby Logger. For example:

Log.init(“/tmp/logfile”) # log to /tmp/logfile Log.init(“/tmp/logfile”, 7) # log to /tmp/logfile, rotate every day Enjoy!

About

A simple class based Log mechanism, similar to Merb and Chef, that you can mix in to your project.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%