Skip to content
This repository has been archived by the owner on Oct 15, 2018. It is now read-only.

tnakamura/logger-ltsv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logger-ltsv Build Status

A LTSV logger.

Installation

Add this line to your application's Gemfile:

gem 'logger-ltsv', require: 'logger/ltsv'

And then execute:

$ bundle

Or install it yourself as:

$ gem install logger-ltsv

Usage

Logger::LTSVFormatter

require 'logger'
require 'logger/ltsv'

logger = Logger.new(STDOUT)
logger.formatter = Logger::LTSVFormatter.new
logger.info('foobar')

LTSVLogger

require 'logger/ltsv'

logger = LTSVLogger.new(STDOUT)
logger.info('foobar')

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request