I am trying to deserialize incoming PUT request with JSON request body using org.codehaus.jackson
package and I am receiving error message The request sent by the client was syntactically incorrect
. How can I get more detailed log/error messages in my Pivotal TC server logs, e.g. in catalina.log
?
I have added the following line to logging.properties:
org.codehaus.level = FINEST
But NO messages from org.codehaus
is displayed in my log, although the error message is displayed on web page. Maybe codehaus
does not support Java logging and I should configure J4Log or similar another logging facility?
My Jackson version is 1.9.13, I am using Pivotal tc server from Spring Tools Suite (3.8).
logging.properties
for better idea of how you;re configuring it currently. – Goglet