summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-07-23 02:32:50 +1000
committerMarkus Roberts <Markus@reality.com>2010-07-25 22:24:36 -0700
commit636079f114034f5dced1772da206d1b1b1a537ed (patch)
tree5d205228e304fb0ef4a315fee5324b94869f21dc /lib
parent000fd1e83782c70fc9d9b032b52d96800cab2121 (diff)
downloadpuppet-636079f114034f5dced1772da206d1b1b1a537ed.tar.gz
puppet-636079f114034f5dced1772da206d1b1b1a537ed.tar.xz
puppet-636079f114034f5dced1772da206d1b1b1a537ed.zip
Fixed #4304 - Changed logging level for auto import message
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/parser/type_loader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/type_loader.rb b/lib/puppet/parser/type_loader.rb
index 35ad49593..09aa636e1 100644
--- a/lib/puppet/parser/type_loader.rb
+++ b/lib/puppet/parser/type_loader.rb
@@ -88,7 +88,7 @@ class Puppet::Parser::TypeLoader
nil
end
if result = yield(filename)
- Puppet.info "Automatically imported #{name} from #{filename} into #{environment}"
+ Puppet.debug "Automatically imported #{name} from #{filename} into #{environment}"
result.module_name = modname if modname and result.respond_to?(:module_name=)
return result
end