class ActiveSupport::BufferedLogger
Copyright © 2008-2013 Michael Dvorkin and contributors.
Fat Free CRM is freely distributable under the terms of MIT license. See MIT-LICENSE file or www.opensource.org/licenses/mit-license.php
Constants
- BRIGHT
- NORMAL
Public Instance Methods
i(*args)
click to toggle source
# File lib/fat_free_crm/gem_ext/active_support/buffered_logger.rb, line 16 def i(*args) info "#{BRIGHT}\n\n#{args.map(&:inspect).join(' ')}#{NORMAL}\n\n\n" end
p(*args)
click to toggle source
# File lib/fat_free_crm/gem_ext/active_support/buffered_logger.rb, line 12 def p(*args) info "#{BRIGHT}\n\n#{args.join(' ')}#{NORMAL}\n\n\n" end