diff options
author | Thom May <thom@may.lt> | 2017-08-21 14:24:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-21 14:24:59 +0100 |
commit | 4dec2671448e67061cafca1c498bfc4021eaa9a9 (patch) | |
tree | 6a38c80dac3085dc2d1815539f5a78defd7dfdc4 | |
parent | 8d7e8341c8d3dc08a90834dbb2bcced6477bc18d (diff) | |
parent | 57e52b3564322cf141f8b97635a3663c27e2e003 (diff) | |
download | mixlib-log-4dec2671448e67061cafca1c498bfc4021eaa9a9.tar.gz |
Merge pull request #24 from olleolleolle/patch-1
README: Format a line of code using Markdown, not RDoc
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ Log.error('baz') Log.fatal('wewt') ``` -By default, `Mixlib::Logger` logs to STDOUT. To alter this, you should call +Log.init+, passing any arguments to the standard Ruby Logger. For example: +By default, `Mixlib::Logger` logs to STDOUT. To alter this, you should call `Log.init`, passing any arguments to the standard Ruby Logger. For example: ```ruby Log.init('/tmp/logfile') # log to /tmp/logfile |