diff options
author | Luke Kanies <luke@madstop.com> | 2005-08-04 18:41:41 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-08-04 18:41:41 +0000 |
commit | afcb2ee529503207c7979f1397a5066b06e98198 (patch) | |
tree | d2871c4419adb4d48e4cb060741f96384d029a1e | |
parent | bc3a433f0baf1ad7d5d7d7ee601a74e275e04fa8 (diff) | |
download | puppet-afcb2ee529503207c7979f1397a5066b06e98198.tar.gz puppet-afcb2ee529503207c7979f1397a5066b06e98198.tar.xz puppet-afcb2ee529503207c7979f1397a5066b06e98198.zip |
adding a bit more output
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@496 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r-- | lib/puppet/event.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/puppet/event.rb b/lib/puppet/event.rb index 5bdd67c40..cb120bc28 100644 --- a/lib/puppet/event.rb +++ b/lib/puppet/event.rb @@ -112,8 +112,9 @@ module Puppet @object = args[:object] @transaction = args[:transaction] - Puppet.info "%s: %s(%s)" % - [@object,@state,@event] + #Puppet.info "%s: %s(%s)" % + Puppet.info "%s: %s changed from %s to %s" % + [@object,@state.name, @state.is,@state.should] # initially, just stuff all instances into a central bucket # to be handled as a batch |