Skip to content

Repository files navigation

mruby-logger Build Status

Implementation of the Ruby 2.4.1 Standard Library Logger. A simple but sophisticated logging utility that you can use to output messages.

logger=Logger.new'logs/development.log'logger.formatter=->(severity,datetime,progname,msg)do"[#{severity[0]}] #{datetime}: #{msg}\n"endlogger.info'hello world'# => "[INFO] 2017-05-23 16:04:08 +0900: hello world"

Installation

Add the line below to your build_config.rb:

MRuby::Build.newdo |conf|
# ... (snip) ...conf.gem'mruby-logger'end

Or add this line to your aplication's mrbgem.rake:

MRuby::Gem::Specification.new('your-mrbgem')do |spec|
# ... (snip) ...spec.add_dependency'mruby-logger'end

Development

Clone the repo:

$ git clone https://github.com/katzer/mruby-logger.git && cd mruby-logger/

Compile the source:

$ rake compile

Run the tests:

$ rake test

Authors

  • Sebastián Katzer, Fa. appPlant GmbH

License

The mgem is available as open source under the terms of the MIT License.

Made with 😋 in Leipzig

© 2017 appPlant GmbH

About

A simple but sophisticated logging utility that you can use to output messages

Topics

Resources

Stars

7 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages