Module | Ramaze::Logging |
In: |
lib/ramaze/log/logging.rb
|
This module provides a basic skeleton for your own loggers to be compatible. The minimal usage is like this:
class MyLogger include Logging def log(tag, *args) p tag => args end end