diff options
author | Thom May <thom@chef.io> | 2015-06-09 11:38:31 +0100 |
---|---|---|
committer | Thom May <thom@chef.io> | 2015-06-09 11:38:31 +0100 |
commit | 86feebefef96816fb5e080941dc2e95d65dc505e (patch) | |
tree | 2c68bdb016d8395a131727b370b1fd38c1c3f3b1 /RELEASE_NOTES.md | |
parent | 99c32217568882be636f29eb507407c79a8388ef (diff) | |
download | chef-86feebefef96816fb5e080941dc2e95d65dc505e.tar.gz |
12.4.0.rc.112.4.0.rc.1
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index aa623a46be..049640d7ab 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,4 @@ -# Chef Client Release Notes <unreleased>: +# Chef Client Release Notes 12.4.0: ## Knife Key Management Commands for Users and Clients @@ -11,10 +11,23 @@ for a full list of subcommands and their usage. ## System Loggers +You can now have all Chef logs sent to a logging system of your choice. + +### Syslog Logger + +Syslog can be used by adding the following line to your chef config +file: + +```ruby +log_location Chef::Log::Syslog.new("chef-client", ::Syslog::LOG_DAEMON) +``` + +THis will write to the `daemon` facility with the originator set as +`chef-client`. + ### Windows Event Logger -You can now have all Chef logs sent to the Windows Event Logger. The logger can be -used by adding the following line to your chef config file: +The logger can be used by adding the following line to your chef config file: ```ruby log_location Chef::Log::WinEvt.new |