Skip to content

Commit

Permalink
SNOW-1612981 loglevel for errors Debug -> Error (#1008)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-dszmolka authored Aug 27, 2024
1 parent 7e67f65 commit adac81a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Snowflake.Data/Core/RestRequester.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ protected virtual async Task<HttpResponseMessage> SendAsync(HttpRequestMessage m
.ConfigureAwait(false);
if (!response.IsSuccessStatusCode)
{
logger.Debug($"Failed Response: {sid} {message.Method} {message.RequestUri} StatusCode: {(int)response.StatusCode}, ReasonPhrase: '{response.ReasonPhrase}'");
logger.Error($"Failed Response: {sid} {message.Method} {message.RequestUri} StatusCode: {(int)response.StatusCode}, ReasonPhrase: '{response.ReasonPhrase}'");
}
else
{
Expand Down

0 comments on commit adac81a

Please sign in to comment.