Project

noddy

0.0
No commit activity in last 3 years
No release in over 3 years
Noddy Logger is a very simple library to quickly output logs from your scripts and applications using colours, timestamps etc.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.5
>= 0
 Project Readme

Noddy

Noddy Logger is a very simple library to quickly outputs from your scripts and applications.

This is very much a work in progress, but is still usable.

TODO:

  • Sepcifiy log format (text, json etc)

Installation

Add this line to your application's Gemfile:

gem 'noddy'

And then execute:

$ bundle

Or install it yourself as:

$ gem install noddy

Usage

require "noddy"

Noddy.log_level = Noddy::DEBUG # Default: Noddy::INFO
Noddy.colour = true # Default: false
Noddy.timestamp = false # Default: true
Noddy.outputs = [STDOUT, Noddy::FILE] # Default [STDERR]
Noddy.outputs = [STDOUT, '/var/log/dca/test.log'] # Using a custom log path

Noddy.debug "I am just a debug message"
Noddy.info "I am an info message"
Noddy.warning "I am a warning message"
Noddy.error "I am am error message"
Noddy.critical "Oh dear, I am a critical message"

Contributing

  1. Fork it ( http://github.com//noddy/fork )
  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