I did this for a test:
logger.debug("some test message"); // <- DOES get printed.
my_code_here_based_on_HttpClient; // <- should produce tons of logging
output
logger.debug("some test message"); // <- DOES get printed.So why the middle part doesn't produce any output? Just to recall I am using log4j.rootLogger=DEBUG, stdout so it shouldn't matter what and why. I am really puzzled now. Why the middle part doesn't produce any output?
