Type of Logs in Application server or JVM

There is different type of logs files which contain the all activity about that particular JVM.

Every profiles contain a directory which is called logs

Inside this logs directory all server or JVM related logs stored.

1. JVM logs :-  These logs file contain the information related to running server status and if there is any kind of exception and execution of the server.
   
     file names   1. SystemOut.logs          2. SystemErr.logs


Log path:-  ${SERVER_LOG_ROOT}  this is the default path this location also can be customize

2.Process logs:- These logs file contain the information related to memory consume by Jvm and the performance of that server.

        file names  1. native_stderr.log       2.  native_stdout.log

Log path:-  ${SERVER_LOG_ROOT}  this is the default path this location also can be customize


Comments