Skip to content

Commit

Permalink
yaes
Browse files Browse the repository at this point in the history
  • Loading branch information
cmyui committed Jun 24, 2024
1 parent 66d3af1 commit 78274a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/production-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- tesdt

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion common/method_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func GenericError(err error) {
func _err(err error, tags map[string]string, c *fasthttp.RequestCtx) {
_, file, no, ok := runtime.Caller(2)
if ok {
slog.ErrorContext(c, "An error occurred", "filename", file, "line", no, "error", err.Error())
slog.ErrorContext(c, "An error occurred", "filename", file, "test", "cmyui", "line", no, "error", err.Error())
} else {
slog.ErrorContext(c, "An error occurred", "error", err.Error())
}
Expand Down

0 comments on commit 78274a3

Please sign in to comment.