8000 GitHub - jordan-brough/prefixed-log-formatter: A simple Logger::Formatter that prepends log messages with time and process id
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jordan-brough/prefixed-log-formatter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Purpose

Log file lines should be prefixed with log level, timestamp, process id and an easy-to-grep "end of prefix" marker. This subclass of Logger::Formatter does those things.

It also ensures that every line in the log is prefixed, even if the log messages themselves have newlines in them.

Example IRB Usage

  • install gem
gem install prefixed-log-formatter
# from within irb
require 'rubygems'
require 'prefixed-log-formatter'

logger = Logger.new($stdout)
logger.formatter = PrefixedLogFormatter::Formatter.new
logger.debug 'hi'

Example Rails usage

# add to your Gemfile
gem "prefixed-log-formatter"

# in config/application.rb
config.logger = Logger.new(config.paths.log.first)
config.log_level = Rails.env.production? ? Logger::INFO : Logger::DEBUG
config.logger.formatter = PrefixedLogFormatter::Formatter.new

# in your app
Rails.logger.debug 'debug'
Rails.logger.info 'info'
# etc...

Customize the prefix separator

The default is ':::'

logger = Logger.new($stdout)
logger.formatter = PrefixedLogFormatter::Formatter.new
logger.formatter.prefix_separator = '--'
logger.debug 'hi'
# result:
# D 2012-03-05 15:18:58 28986 -- hi

About

A simple Logger::Formatter that prepends log messages with time and process id

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages

0