Skip to content

Commit

Permalink
fix: format logs
Browse files Browse the repository at this point in the history
  • Loading branch information
anasmuhmd committed Aug 3, 2024
1 parent 22cba2a commit 6e03a99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/github/publish_github_gist.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func publishGithubGist(loader ClientLoaderFn) plugin.PublishFunc {
Detail: err.Error(),
}}
}
slog.InfoContext(ctx, "created gist", "url", *gist.HTMLURL)
slog.InfoContext(ctx, "Created gist", "url", *gist.HTMLURL)
} else {

gist, _, err := client.Gists().Get(ctx, gistId.AsString())
Expand All @@ -176,7 +176,7 @@ func publishGithubGist(loader ClientLoaderFn) plugin.PublishFunc {
Detail: err.Error(),
}}
}
slog.InfoContext(ctx, "updated gist", "url", *gist.HTMLURL)
slog.InfoContext(ctx, "Updated gist", "url", *gist.HTMLURL)
}
return nil
}
Expand Down

0 comments on commit 6e03a99

Please sign in to comment.