I have my spring boot application running on Openshift as container built using docker Image. I have enabled the logging in my application and prints all the logs.
Now i want to examine the log files of the POD to check for any errors, since one my request is failing. I do know about the command line option oc logs -f <podname>
That just prints the log into cmd prompt, but i want whole log to be copied from server to local file.
So that i can find some particular lines or errors. Is is possible?