summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-05-31 23:19:16 -0700
committerTim Smith <tsmith@chef.io>2019-05-31 23:19:16 -0700
commitcf5ffe56245ef5992b8873a72f5a06a09bd48b81 (patch)
treef8fe47203a34ee92bcb9cc7bee27ef6643808cbe /README.md
parent2b0a1a7cf40958e9db4c6704f72cda0edf724b0e (diff)
downloadmixlib-log-cf5ffe56245ef5992b8873a72f5a06a09bd48b81.tar.gz
Remove Travis PR Testing
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 785cce8..0af46ae 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Mixlib::Log
-[![Build Status Master](https://travis-ci.org/chef/mixlib-log.svg?branch=master)](https://travis-ci.org/chef/mixlib-log) [![Gem Version](https://badge.fury.io/rb/mixlib-log.svg)](https://badge.fury.io/rb/mixlib-log)
+[![Gem Version](https://badge.fury.io/rb/mixlib-log.svg)](https://badge.fury.io/rb/mixlib-log)
Mixlib::Log provides a mixin for enabling a class based logger object, a-la Merb, Chef, and Nanite. To use it:
@@ -25,7 +25,7 @@ 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:
```ruby
-Log.init('/tmp/logfile') # log to /tmp/logfile
+Log.init('/tmp/logfile') # log to /tmp/logfile
Log.init('/tmp/logfile', 7) # log to /tmp/logfile, rotate every day
```
@@ -45,7 +45,7 @@ For information on contributing to this project please see our [Contributing Doc
## License & Copyright
-- Copyright:: Copyright (c) 2008-2018 Chef Software, Inc.
+- Copyright:: Copyright (c) 2008-2019 Chef Software, Inc.
- License:: Apache License, Version 2.0
```text