This commit is contained in:
a 2024-05-07 20:35:22 -05:00
parent 3ed27e0a18
commit 80c49d3203
Signed by: a
GPG Key ID: 374BC539FE795AF0
1 changed files with 2 additions and 1 deletions

View File

@ -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)
}