Project

epilog

0.01
Low commit activity in last 3 years
No release in over a year
A JSON logger with Rails support
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.11
~> 1.3
>= 4.2, < 7
 Project Readme

Epilog Gem

Gem Version CI Codacy Badge Code Coverage

A JSON logger with Rails support.

Documentation

Read below to get started, or see the API Documentation for more details.

Installation

Add this line to your application's Gemfile:

gem 'epilog'

Basic Usage

This logger is compatible with the native Ruby Logger interface. To use it, just create an instance of Epilog::Logger.

logger = Epilog::Logger.new($stdout)

Rails Support

To use Epilog with Rails, simply override the Rails default logger with an Epilog logger. Do this in your application.rb or <environment>.rb.

config.logger = Epilog::Logger.new($stdout)
config.logger.progname = 'epilog'
config.log_level = :debug

Development

You can run bin/console for an interactive prompt that will allow you to experiment.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/nullscreen/epilog.