aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--service/app_runner.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/service/app_runner.go b/service/app_runner.go
index 0240c27..61942b2 100644
--- a/service/app_runner.go
+++ b/service/app_runner.go
@@ -65,6 +65,7 @@ func (r *AppRunner) AddJob(f RunnerFunc) {
65 65
66func (r *AppRunner) AddJobRunNow(f RunnerFunc) { 66func (r *AppRunner) AddJobRunNow(f RunnerFunc) {
67 r.eagerJobs = append(r.eagerJobs, f) 67 r.eagerJobs = append(r.eagerJobs, f)
68 r.Logger.Info("Starting an eager job")
68 r.goRunPanic(f) 69 r.goRunPanic(f)
69} 70}
70 71