Skip to content

Commit

Permalink
Merge pull request #26 from sensiblecodeio/fix-log-print
Browse files Browse the repository at this point in the history
Use `log.Fatalf` instead of `log.Fatal`
  • Loading branch information
StevenMaude authored May 17, 2024
2 parents 68f9c55 + 29fefa0 commit 2c64837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func main() {

bucket, key, err := parseS3URL(s3url)
if err != nil {
log.Fatal("invalid URL: %v", err)
log.Fatalf("invalid URL: %v", err)
}

ctx, cancel := context.WithCancel(context.Background())
Expand Down

0 comments on commit 2c64837

Please sign in to comment.