summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-08-30 05:25:00 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-08-30 05:25:00 +0000
commit14d64dd3f3714c05963204d77afac7cd1e8d9b23 (patch)
tree6627f080e637394c466d41e29c682cea4ee98a85 /lib
parentfa0446bcdac90c3c0880f77b089066350be271dd (diff)
downloadpuppet-14d64dd3f3714c05963204d77afac7cd1e8d9b23.tar.gz
puppet-14d64dd3f3714c05963204d77afac7cd1e8d9b23.tar.xz
puppet-14d64dd3f3714c05963204d77afac7cd1e8d9b23.zip
downgrading the template interpolation message
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1517 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/parser/scope.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/scope.rb b/lib/puppet/parser/scope.rb
index bff1f24a0..2021ec0f1 100644
--- a/lib/puppet/parser/scope.rb
+++ b/lib/puppet/parser/scope.rb
@@ -49,7 +49,7 @@ module Puppet::Parser
def result
result = nil
- benchmark(:info, "Interpolated template #{@file}") do
+ benchmark(:debug, "Interpolated template #{@file}") do
template = ERB.new(File.read(@file))
result = template.result(binding)
end