summaryrefslogtreecommitdiff
path: root/internal/run.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-10-01 10:05:11 +0300
committerPaul Buetow <paul@buetow.org>2024-10-01 10:05:11 +0300
commit74bcb110cba9cd22b88c561115e332d500de7716 (patch)
tree080287b50ff69e2e601e5ab781da500a93c4b43c /internal/run.go
parentcbdce79d25206573d1f79c9c647dcaa251b69463 (diff)
use of entry.Entry around the code base
Diffstat (limited to 'internal/run.go')
-rw-r--r--internal/run.go4
1 files changed, 2 insertions, 2 deletions
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