diff options
-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 |