summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/storage.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/storage.rb b/lib/puppet/storage.rb
index d8f1c3f65..be3c2e0ac 100644
--- a/lib/puppet/storage.rb
+++ b/lib/puppet/storage.rb
@@ -33,7 +33,7 @@ module Puppet
Puppet.info "Statefile %s does not exist" % Puppet[:statefile]
return
end
- Puppet.debug "Loading statefile %s" % Puppet[:statefile]
+ #Puppet.debug "Loading statefile %s" % Puppet[:statefile]
File.open(Puppet[:statefile]) { |file|
file.each { |line|
myclass, key, value = line.split(@@splitchar)
@@ -48,7 +48,7 @@ module Puppet
}
}
- Puppet.debug "Loaded state is %s" % @@state.inspect
+ #Puppet.debug "Loaded state is %s" % @@state.inspect
end
def self.state(myclass)
@@ -84,7 +84,7 @@ module Puppet
}
}
- Puppet.debug "Stored state is %s" % @@state.inspect
+ #Puppet.debug "Stored state is %s" % @@state.inspect
end
end
end