As of now we have Spring boot applications which are running in docker containers - and the docker containers are adding the logs of the application in the below format i.e. the log written by the application is placed in the field called “log” and docker adds the other two fields stdout and timestamp.
Can any one suggest how to remove this additional meta data added by docker and instead have what ever logged by application in the logs as it is.
Docker log
{ “log”: “Some log data”, “stream”: “stdout”, “time”: “2022-03-15T22:56:36.376013325Z” }
Simple log
Some log data