FIx shared structs + add better debugging/linting (#379)

* fix: Fixes issues w/ shared pointers to structs (#378)
* feat: Adds even better debugging and linting support (#376)

This is a #PATCH release.
This commit is contained in:
Harrison (Harry) Cramer
2024-09-16 17:06:40 -04:00
committed by GitHub
parent c3d7f26e3c
commit 5c9b88db4f
31 changed files with 191 additions and 155 deletions

View File

@@ -47,7 +47,7 @@ func (l LoggingServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
Request: r,
}
if pluginOptions.Debug.Response {
logResponse("RESPONSE FROM GO SERVER", resp)
logResponse("RESPONSE FROM GO SERVER", resp) //nolint:errcheck
}
}
@@ -62,7 +62,7 @@ func logRequest(prefix string, r *http.Request) {
os.Exit(1)
}
r.Header.Set("Private-Token", token)
_, err = file.Write([]byte(fmt.Sprintf("\n-- %s --\n%s\n", prefix, res))) //nolint:all
fmt.Fprintf(file, "\n-- %s --\n%s\n", prefix, res) //nolint:errcheck
}
func logResponse(prefix string, r *http.Response) {
@@ -75,7 +75,7 @@ func logResponse(prefix string, r *http.Response) {
os.Exit(1)
}
_, err = file.Write([]byte(fmt.Sprintf("\n-- %s --\n%s\n", prefix, res))) //nolint:all
fmt.Fprintf(file, "\n-- %s --\n%s\n", prefix, res) //nolint:errcheck
}
func openLogFile() *os.File {