I want to debug springframework, To know what is happening while routing request in Restcontroller.
I have defined JSON configuration like below but that is not working for me.
{
"configuration": {
"appenders": {
"Console": {
"name": "consoleAppender",
"target":"SYSTEM_OUT",
"PatternLayout": {
"pattern": "%d{yyyy-MM-dd HH:mm:ss:SSS} %-5p [%c{1}:%t]:%L - %m%n"
}
}
},
"loggers": {
"root": {
"level": "info",
"appender-ref": [{ "ref": "consoleAppender" }]
},
"logger":[{
"name":"org.springframework",
"level": "debug",
"appender-ref": [{ "ref": "consoleAppender" }]
}]
}
}
}
Let me know, if i am doing wrong here.
And another question regarding , what is right way to configure log4j using JSON or XML ?
The below configuration is using for log4j framework. Its describe on XML .
Hopes this stuff worked on your problem.