🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

prefixed-log-formatter

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prefixed-log-formatter

1.0.1
Rubygems
Version published
Maintainers
1
Created
Source

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.

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

FAQs

Package last updated on 06 Mar 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts