Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Z-Bolt/OctoScreen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-04-25 02:43:50 +0300
committerJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-04-25 02:43:50 +0300
commit02adb46b5d249222f6c5374bc6c1a8a555e2a76a (patch)
treec4ead81868eefcd4e577561432564df2b401430d
parentdfc72f314fcf636157760a6f55b31a466dfe0f4d (diff)
modified handleResponse() so 404 errors are optional, but all other errors still are logged2.7.3-dev
-rwxr-xr-xoctoprintApis/client.go28
1 files changed, 13 insertions, 15 deletions
diff --git a/octoprintApis/client.go b/octoprintApis/client.go
index b23d4c4..de7d596 100755
--- a/octoprintApis/client.go
+++ b/octoprintApis/client.go
@@ -58,21 +58,14 @@ func (this *Client) doJsonRequest(
bytes, err := this.doRequest(method, target, "application/json", body, statusMapping, isRequired)
if err != nil {
- if isRequired {
- // Some APIs return an error and the error should be logged.
- logger.LogError("Client.doJsonRequest()", "this.doRequest()", err)
- } else {
- // On the other hand, calls to some APIs are optional, and the result should be logged
- // as info and leave it up to the caller to determine whether it's an error or not.
- logger.Infof("Client.doJsonRequest() - this.doRequest() returned %q", err)
- }
-
+ logOptionalError("Client.doJsonRequest()", "this.doRequest()", err, isRequired)
logger.TraceLeave("Client.doJsonRequest()")
return nil, err
}
// Use the following only for debugging.
if logger.LogLevel() == "debug" {
+ logger.Debug("Client.doJsonRequest() - converting bytes to JSON")
json := string(bytes)
logger.Debugf("JSON response: %s", json)
}
@@ -151,27 +144,27 @@ func (this *Client) handleResponse(
if statusMapping != nil {
if err := statusMapping.Error(httpResponse.StatusCode); err != nil {
- logOptionalError("Client.handleResponse()", "statusMapping.Error()", err, isRequired)
+ logger.LogError("Client.handleResponse()", "statusMapping.Error()", err)
logger.TraceLeave("Client.handleResponse()")
return nil, err
}
}
if httpResponse.StatusCode == 401 {
- logOptionalMessage("Client.handleResponse() - StatusCode is 401", isRequired)
+ logger.Error("Client.handleResponse() - StatusCode is 401")
logger.TraceLeave("Client.handleResponse()")
return nil, ErrUnauthorized
}
if httpResponse.StatusCode == 204 {
- logOptionalMessage("Client.handleResponse() - StatusCode is 204", isRequired)
+ logger.Error("Client.handleResponse() - StatusCode is 204")
logger.TraceLeave("Client.handleResponse()")
return nil, nil
}
body, err := ioutil.ReadAll(httpResponse.Body)
if err != nil {
- logOptionalError("Client.handleResponse()", "ioutil.ReadAll()", err, isRequired)
+ logger.LogError("Client.handleResponse()", "ioutil.ReadAll()", err)
logger.TraceLeave("Client.handleResponse()")
return nil, err
}
@@ -179,8 +172,13 @@ func (this *Client) handleResponse(
if httpResponse.StatusCode >= 200 && httpResponse.StatusCode <= 209 {
logger.Debugf("Client.handleResponse() - status code %d was within range", httpResponse.StatusCode)
} else {
- errMsg := fmt.Sprintf("unexpected status code: %d", httpResponse.StatusCode)
- logOptionalMessage(errMsg, isRequired)
+ errMsg := fmt.Sprintf("Unexpected status code: %d", httpResponse.StatusCode)
+ if httpResponse.StatusCode == 404 {
+ logOptionalMessage(errMsg, isRequired)
+ } else {
+ logger.Error(errMsg)
+ }
+
err = fmt.Errorf(errMsg)
body = nil
}