summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-04-28 13:16:15 +0100
committerSteve Kemp <steve@steve.org.uk>2015-04-28 13:16:15 +0100
commitee2baf7cd63dbe340583181f40c8789be8dc20d0 (patch)
tree5eb438007476de89ed2c9aaf879be94f5ff1e9cb
parent20506b0a54f0ad7a4b1a49b95f2090da765f0d93 (diff)
Revert the last commit - syslog gives us timestamps
-rw-r--r--lib/custodian/worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb
index 9d2d0e7..7910a29 100644
--- a/lib/custodian/worker.rb
+++ b/lib/custodian/worker.rb
@@ -93,7 +93,7 @@ module Custodian
# Show a message on STDOUT if "--verbose" was specified.
#
def log_message(msg)
- puts "#{Time.now.to_s} #{msg}" if ENV['VERBOSE']
+ puts msg if ENV['VERBOSE']
end