File: README.rdoc

package info (click to toggle)
libmixlib-log-ruby 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 100 kB
  • ctags: 18
  • sloc: ruby: 208; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 581 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
== 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!