From 74bcb110cba9cd22b88c561115e332d500de7716 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 1 Oct 2024 10:05:11 +0300 Subject: use of entry.Entry around the code base --- internal/run.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/run.go') diff --git a/internal/run.go b/internal/run.go index 1bfc06a..51573f5 100644 --- a/internal/run.go +++ b/internal/run.go @@ -16,7 +16,7 @@ func Run(ctx context.Context, args config.Args) error { } for _, platform := range args.Platforms { - path, err := schedule.Run(args, platform) + ent, err := schedule.Run(args, platform) switch { case errors.Is(err, schedule.ErrNothingToSchedule): log.Println("Nothing to be scheduled for", platform) @@ -26,7 +26,7 @@ func Run(ctx context.Context, args config.Args) error { return err } - log.Println("Scheduling", path) + log.Println("Scheduling", ent) } return nil -- cgit v1.2.3