Start a new topic
Answered

How to see requests being sent by notification servers

There is an option to log HTTP notification server events, but is it possible to see or log the actual request being sent?


Best Answer

HTTP notification server is using Apache HTTP client. So, you can configure this logger for all logs :

log4j.logger.org.apache.http=DEBUG


or just this one to log content

log4j.logger.org.apache.http.wire=DEBUG


or this one for headers logging only

log4j.logger.org.apache.headers=DEBUG


1 Comment

Answer

HTTP notification server is using Apache HTTP client. So, you can configure this logger for all logs :

log4j.logger.org.apache.http=DEBUG


or just this one to log content

log4j.logger.org.apache.http.wire=DEBUG


or this one for headers logging only

log4j.logger.org.apache.headers=DEBUG


Login to post a comment