summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-04 11:59:59 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-04 11:59:59 +0000
commit607cbd4069a0b47c9a5be743ebc6a564bece21dc (patch)
tree6cea17351a756d0f18c7c9e6a48d134339385101 /lib
parent2b22a826618be3e684ddf09c375bb431a8e9d695 (diff)
Don't use a logger.
Instead we run quietly if nothing was output, and run verbosely if we see "--verbose".
Diffstat (limited to 'lib')
-rw-r--r--lib/custodian/worker.rb25
1 files changed, 2 insertions, 23 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb
index e036168..c11ae71 100644
--- a/lib/custodian/worker.rb
+++ b/lib/custodian/worker.rb
@@ -1,12 +1,4 @@
-
-#
-# Standard modules
-#
-require 'logger'
-
-
-
#
# Our modules.
#
@@ -61,12 +53,6 @@ module Custodian
#
- # The log-file object
- #
- attr_reader :logger
-
-
- #
# The settings from the global configuration file
#
attr_reader :settings
@@ -87,10 +73,6 @@ module Custodian
# Get the alerter-type(s) to instantiate
@alerter = settings.alerter
- # Instantiate the logger.
- logfile = settings.log_file
- @logger = Logger.new( logfile, "daily" )
-
# Save the settings
@settings = settings
@@ -106,11 +88,10 @@ module Custodian
#
- # Write the given message to our logfile - and show it to the console too.
+ # Show to the console if "--verbose" was specified.
#
def log_message( msg )
- @logger.info( msg )
- puts msg
+ puts msg if ( ENV["VERBOSE" ] )
end
@@ -121,8 +102,6 @@ module Custodian
#
def run!
while( true )
- log_message( "\n" )
- log_message( "\n" )
log_message( "Waiting for job.." )
process_single_job()
end