Browse Source

Small improvement for logging.

Martin Edenhofer 7 years ago
parent
commit
9220ad1008
2 changed files with 3 additions and 3 deletions
  1. 1 1
      app/models/scheduler.rb
  2. 2 2
      script/scheduler.rb

+ 1 - 1
app/models/scheduler.rb

@@ -195,7 +195,7 @@ class Scheduler < ApplicationModel
     if try_run_max > try_count
       _start_job(job, try_count, try_run_time)
     else
-      raise "STOP thread for #{job.method} after #{try_count} tries"
+      raise "STOP thread for #{job.method} after #{try_count} tries (#{e.inspect})"
     end
   end
 

+ 2 - 2
script/scheduler.rb

@@ -32,8 +32,8 @@ def after_fork(dir)
     file.sync = true
   end
 
-  $stdout.reopen( "#{dir}/log/scheduler_out.log", 'w')
-  $stderr.reopen( "#{dir}/log/scheduler_err.log", 'w')
+  $stdout.reopen("#{dir}/log/scheduler_out.log", 'w')
+  $stderr.reopen("#{dir}/log/scheduler_err.log", 'w')
 end
 
 before_fork