Apacha HttpClient logging ausschalten

ramotzkie

Grünschnabel
hi,
ich finde irgendwie keine erklärung dazu, wie man das Logging beim
Apache HttpClient von hier ( http://hc.apache.org/) abschaltet.
Mich stören die ganzen Ausgbaen in der Konsole sehr.
Weiß das zufällig jemand?

Danke im Vorraus!
MfG
ramotzkie
 
Hi,
entweder du startest deine Anwendung mit folgender VM-Option :
Code:
-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog

oder du setzt in deiner Anwendung den Systemparameter
Code:
System.setProperty("org.apache.commons.logging.Log", "org.apache.commons.logging.impl.NoOpLog");

Grüße!
 
Zurück