From 80c49d3203fb0feabffab47717bec5325b6b1d94 Mon Sep 17 00:00:00 2001 From: a Date: Tue, 7 May 2024 20:35:22 -0500 Subject: [PATCH] sync --- .config/boilr/templates/river/template/job.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/boilr/templates/river/template/job.go b/.config/boilr/templates/river/template/job.go index be30971..6d85db7 100644 --- a/.config/boilr/templates/river/template/job.go +++ b/.config/boilr/templates/river/template/job.go @@ -51,5 +51,6 @@ func New(p Params) (r Result, err error) { } func (o *Worker) Work(ctx context.Context, job *river.Job[*Args]) error { - return fmt.Errorf("Job %s is not implemented", (&Args{}).Kind()) + o.log.Info("Starting Job", "name", packageName, "args", job.Args) + return fmt.Errorf("Job %s is not implemented", packageName) }