Sha256: 5078759f356566b4f16ded39385087de94873eda5f8bd13ce8f7eb6dc7afd507
Contents?: true
Size: 476 Bytes
Versions: 43
Compression:
Stored size: 476 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. require 'logger' module Ramaze module Logger # Informer for the Stdlib Logger class Logger < ::Logger # integration to Logging def log(tag, *args) __send__(tag, args.join("\n")) end # Stub for compatibility def dev(*args) debug(*args) end end end end
Version data entries
43 entries across 43 versions & 5 rubygems