Categories: None [Edit]
fancy_logger
# Fancy Logger
An easily customizable logger with style.
## Install
### Bundler: `gem 'fancy_logger'`
### RubyGems: `gem install fancy_logger`
## Usage
Simply use as if you were using the normal Ruby `Logger` class:
```ruby
require 'fancy_logger'
logger = FancyLogger.new(STDOUT)
logger.info "Hello"
```
### Config
The `config` instance method allows you to modify the configuration of the Logger within a DSL.
Continuing with our last example:
```ruby
logger.config do
timestamp_format "%c"
styles do
info do
foreground :yellow
blink true
end
end
end
logger.debug 'Look here!'
logger.info 'Doing things...'
logger.warn 'Watch out!'
logger.error 'Bad'
logger.fatal 'VERY bad'
logger.unknown 'Weird unknown stuff'
```
#### Output
![][output_example]
### Config
```ruby
# The format of the timestamp in the log. Follows the strftime standards.
timestamp_format "%F %r"
# On the first logged message, FancyLogger will prepend a help message
# containing a list of all the severities (debug, info, warn, etc) styled
# according to your config as reference.
# You can disable this by setting the below option to false.
show_help_message true
# Under styles, you have a configuration for each severity.
# Each severity has a configuration with the following valid options:
# Key: foreground
# Value:
# :default, :black, :red, :green, :yellow, :blue, :magenta, :cyan, :white
#
# Key: background
# Value:
# :default, :black, :red, :green, :yellow, :blue, :magenta, :cyan, :white
#
# Key: reset
# Value: true or false
#
# Key: bright
# Value: true or false
#
# Key: italic
# Value: true or false
#
# Key: underline
# Value: true or false
#
# Key:
# blink
# Value: true or false
#
# Key: inverse
# Value: true or false
#
# Key: hide
# Value: true or false
styles do
debug do
foreground :black
background :cyan
end
info do
foreground :default
background :default
end
warn do
foreground :yel...
Total
Ranking: 74,478 of 191,816
Downloads: 13,177
Daily
Ranking: 53,468 of 191,796
Downloads: 5
Downloads Trends
Ranking Trends
Num of Versions Trends
Popular Versions (Major)
Popular Versions (Major.Minor)
Depended by
| Rank | Downloads | Name |
|---|---|---|
| 5,765 | 1,071,560 | jquery-cookie-rails |
| 83,481 | 11,078 | morris-rails |
Depends on
| Rank | Downloads | Name |
|---|---|---|
| 8 | 1,284,528,619 | rake |
| 54 | 678,828,577 | rainbow |
| 93 | 476,720,300 | rb-fsevent |
| 395 | 123,055,782 | guard-rspec |
| 406 | 121,500,658 | redcarpet |
| 778 | 69,926,158 | fuubar |
| 1,384 | 30,765,673 | github-markup |
| 4,268 | 2,222,389 | version |
| 7,248 | 620,037 | guard-yard |
| 38,326 | 32,964 | outline |
| 42,124 | 29,115 | at |
Owners
| # | Gravatar | Handle |
|---|---|---|
| 1 | RyanScottLewis |