-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Defaulting to non-proxy environment" log warning #172
Comments
I'd take this a step further and say this should be a DEBUG statement. |
Agreed. Raising the log level to hide spam and mask real issues is not a solution. And this is literally a ONE line fix. Why has this not been addressed yet? |
I agree should be This would be a useful fix, @gnongsie any intention to move forward with it? |
In the meantime the following configuration will skip the
|
….Changed the condition to reach the mentioned log message.
…. Changed the condition to reach the mentioned log message.
We frequently see lines with this message in our logs:
We have traced the source of these to the below Authorize.net code:
sdk-java/src/main/java/net/authorize/util/HttpClient.java
Lines 134 to 165 in 487462d
It seems like this should be an INFO rather than a WARN. We want to keep our log threshold at WARN to be able to see potential problems, but then we end up with mostly these "non-proxy environment" lines.
Found others complaining here: https://community.developer.authorize.net/t5/Integration-and-Testing/quot-Non-proxy-quot-from-AuthNet-SDK-is-spamming-our-logs/td-p/71855.
The text was updated successfully, but these errors were encountered: