diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-10-04 18:44:26 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-10-04 18:44:26 +0000 |
commit | 1213d6060ae8fdf75dace54b978804a37aa70c31 (patch) | |
tree | 6a54f25d3333a9cf666f51898e73060fe0c7fa96 /lib/puppet/parser | |
parent | 28cee40689440388994a4768bd301ae32c8ecc05 (diff) | |
download | puppet-1213d6060ae8fdf75dace54b978804a37aa70c31.tar.gz puppet-1213d6060ae8fdf75dace54b978804a37aa70c31.tar.xz puppet-1213d6060ae8fdf75dace54b978804a37aa70c31.zip |
Removing some left-over debugging
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1727 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r-- | lib/puppet/parser/ast/node.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/puppet/parser/ast/node.rb b/lib/puppet/parser/ast/node.rb index 3f508b2bf..704710dc1 100644 --- a/lib/puppet/parser/ast/node.rb +++ b/lib/puppet/parser/ast/node.rb @@ -17,14 +17,11 @@ class Puppet::Parser::AST # origscope #end - Puppet.warning "%s => %s" % [scope.type, self.name] - # We don't have to worry about the declarativeness of node parentage, # because the entry point is always a single node definition. if parent = self.parentclass scope = parent.safeevaluate :scope => scope end - Puppet.notice "%s => %s" % [scope.type, self.name] scope = scope.newscope( :type => self.name, @@ -32,7 +29,6 @@ class Puppet::Parser::AST :source => self, :namespace => "" # nodes are always in "" ) - Puppet.info "%s => %s" % [scope.type, self.name] # Mark our node name as a class, too, but strip it of the domain # name. Make the mark before we evaluate the code, so that it is |