summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-07-14 18:41:37 +0000
committerLuke Kanies <luke@madstop.com>2005-07-14 18:41:37 +0000
commit668b9de03584ab590c317c7658f15a1925befa53 (patch)
tree24daf14e50ffb857a4a2f6a30f7af6ed1eafb1f5
parentc04b337a94f35c2c0ac7b65b6e4a941d707a69a7 (diff)
downloadpuppet-668b9de03584ab590c317c7658f15a1925befa53.tar.gz
puppet-668b9de03584ab590c317c7658f15a1925befa53.tar.xz
puppet-668b9de03584ab590c317c7658f15a1925befa53.zip
converting debug() back to Puppet.debug()
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@392 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--lib/puppet/fact.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/fact.rb b/lib/puppet/fact.rb
index 16c505af4..0a90d4e50 100644
--- a/lib/puppet/fact.rb
+++ b/lib/puppet/fact.rb
@@ -19,7 +19,7 @@ module Puppet
if fact.value.nil?
raise "Could not retrieve fact %s" % name
end
- debug("fact: got %s from %s for %s" % [fact.value,fact,name])
+ Puppet.debug("fact: got %s from %s for %s" % [fact.value,fact,name])
return fact.value
end