]> git.cworth.org Git - sup/commitdiff
disable gpg logging messages because they're a little irritating
authorWilliam Morgan <wmorgan-sup@masanjin.net>
Thu, 20 Dec 2007 02:40:43 +0000 (18:40 -0800)
committerWilliam Morgan <wmorgan-sup@masanjin.net>
Thu, 20 Dec 2007 02:40:43 +0000 (18:40 -0800)
lib/sup/crypto.rb

index 0f9cdfd40f60a3507bee9cb01af4913f35fe31bd..9e16132304ebad107b8cab43c0706de82b6e1a78 100644 (file)
@@ -156,9 +156,9 @@ private
 
   def run_gpg args
     cmd = "#{@cmd} #{args} 2> /dev/null"
-    Redwood::log "crypto: running: #{cmd}"
+    #Redwood::log "crypto: running: #{cmd}"
     output = `#{cmd}`
-    Redwood::log "crypto: output: #{output.inspect}" unless $?.success?
+    #Redwood::log "crypto: output: #{output.inspect}" unless $?.success?
     output
   end
 end