diff options
author | Jesse Wolfe <jes5199@gmail.com> | 2011-02-03 16:47:51 -0800 |
---|---|---|
committer | Jesse Wolfe <jes5199@gmail.com> | 2011-02-03 16:47:51 -0800 |
commit | dd68914eb25d8dd9aac5c8ced39fa0d05136ed9f (patch) | |
tree | b0dd0c48901a9fa339b2d8734bd7a6bca088458c /lib/puppet/util/log.rb | |
parent | ea348761df0b5297dbac50c7f1c48d22746524fa (diff) | |
parent | 3f2f1c2456cf5f08bd67ab5730ab970be5285711 (diff) | |
download | puppet-dd68914eb25d8dd9aac5c8ced39fa0d05136ed9f.tar.gz puppet-dd68914eb25d8dd9aac5c8ced39fa0d05136ed9f.tar.xz puppet-dd68914eb25d8dd9aac5c8ced39fa0d05136ed9f.zip |
Merge branch 'maint/2.6.next/help' into next
Diffstat (limited to 'lib/puppet/util/log.rb')
-rw-r--r-- | lib/puppet/util/log.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/puppet/util/log.rb b/lib/puppet/util/log.rb index 2f9f356bb..d34fbaf55 100644 --- a/lib/puppet/util/log.rb +++ b/lib/puppet/util/log.rb @@ -68,6 +68,12 @@ class Puppet::Util::Log } end + def Log.autoflush=(v) + @destinations.each do |type, dest| + dest.autoflush = v if dest.respond_to?(:autoflush=) + end + end + # Create a new log message. The primary role of this method is to # avoid creating log messages below the loglevel. def Log.create(hash) |