summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-07-12 05:50:45 +0000
committerLuke Kanies <luke@madstop.com>2005-07-12 05:50:45 +0000
commit5ff4b02b62328336340c1d73eddc76fdafe0f492 (patch)
tree038675a13cf35f570ebe0ca685e691b1fd1a9de2
parentbf091329c0472b58a82381cc4bada8a910074fed (diff)
downloadpuppet-5ff4b02b62328336340c1d73eddc76fdafe0f492.tar.gz
puppet-5ff4b02b62328336340c1d73eddc76fdafe0f492.tar.xz
puppet-5ff4b02b62328336340c1d73eddc76fdafe0f492.zip
removing some debugging
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@373 980ebf18-57e1-0310-9a29-db15c13687c0
-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