CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 31 Aug 2025 03:03:22 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100123023211
location: https://web.archive.org/web/20100123023211/https://github.com/opscode/mixlib-log
server-timing: captures_list;dur=0.777230, exclusion.robots;dur=0.028204, exclusion.robots.policy;dur=0.012700, esindex;dur=0.013889, cdx.remote;dur=32.666537, LoadShardBlock;dur=159.318436, PetaboxLoader3.datanode;dur=65.517709, PetaboxLoader3.resolve;dur=68.100325
x-app-server: wwwb-app204
x-ts: 302
x-tr: 234
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app204; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 31 Aug 2025 03:03:23 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sat, 23 Jan 2010 02:32:10 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "a285985568d670425a406d04ebc72989"
x-archive-orig-x-runtime: 155ms
x-archive-orig-content-length: 25217
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sat, 23 Jan 2010 02:32:11 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 23 Jan 2010 02:32:11 GMT", ; rel="memento"; datetime="Sat, 23 Jan 2010 02:32:11 GMT", ; rel="next memento"; datetime="Sat, 04 Sep 2010 07:19:15 GMT", ; rel="last memento"; datetime="Sun, 15 Jun 2025 05:19:33 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_13_20100123001328_crawl102-c/52_13_20100123023033_crawl101.arc.gz
server-timing: captures_list;dur=0.829866, exclusion.robots;dur=0.014372, exclusion.robots.policy;dur=0.007812, esindex;dur=0.006212, cdx.remote;dur=5.720947, LoadShardBlock;dur=234.887050, PetaboxLoader3.datanode;dur=174.109196, PetaboxLoader3.resolve;dur=166.291133, load_resource;dur=125.920791
x-app-server: wwwb-app204
x-ts: 200
x-tr: 427
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
opscode's mixlib-log at master - GitHub
This service is courtesy of Pledgie.
opscode / mixlib-log
- Source
- Commits
- Network (10)
- Issues (0)
- Downloads (3)
- Wiki (1)
- Graphs
-
Branch:
master
-
Branches (2)
- PL-161
- master ✓
- Tags (3)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
A simple class based Log mechanism, similar to Merb and Chef, that you can mix in to your project. — Read more

Adam Jacob (author)
Tue Jan 05 15:36:17 -0800 2010
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Tue Jan 05 15:36:03 -0800 2010 | Adding the gemspec [Adam Jacob] |
![]() |
LICENSE | Wed Mar 11 13:25:45 -0700 2009 | Initial commit [adamhjk] |
![]() |
NOTICE | Wed Mar 11 13:25:45 -0700 2009 | Initial commit [adamhjk] |
![]() |
README.rdoc | Mon May 11 21:08:08 -0700 2009 | Convert to jeweler [AJ Christensen] |
![]() |
Rakefile | Mon Dec 21 17:18:36 -0800 2009 | fix makefile and require order [Christopher Brown] |
![]() |
VERSION.yml | Tue Jan 05 15:34:30 -0800 2010 | Bumping version number to 1.1.0 [Adam Jacob] |
![]() |
features/ | Fri Dec 11 15:09:59 -0800 2009 | fix log level setting [Christopher Brown] |
![]() |
lib/ | Mon Dec 21 17:18:36 -0800 2009 | fix makefile and require order [Christopher Brown] |
![]() |
mixlib-log.gemspec | Tue Jan 05 15:36:17 -0800 2010 | Regenerated gemspec for version 1.1.0 [Adam Jacob] |
![]() |
spec/ | Mon Dec 14 11:52:54 -0800 2009 | making log level changes backward compatible [Christopher Brown] |
README.rdoc
Mixlib::Log
Mixlib::Log provides a mixin for enabling a class based logger object, a-la Merb, Chef, and Nanite. To use it:
require 'mixlib/log' class Log extend Mixlib::Log end
You can then do:
Log.debug("foo") Log.info("bar") Log.warn("baz") 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:
Log.init("/tmp/logfile") # log to /tmp/logfile Log.init("/tmp/logfile", 7) # log to /tmp/logfile, rotate every day
Enjoy!