Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find the application log that deployed on weblogic server 10.3.5?

I am able to find the whole sever log under the path

....\Oracle\WLS\user_projects\domains\[domain name goes here]\servers\[Server name goes here]\logs

But the problem that I it does not contains all the stack that I usually see in Jdeveloper console at the development time.

So, Where to find the stack or logs for the application not the whole sever exactly like Jdeveloper console where every thing is shown even the print statements (System.out.print()) ?

like image 446
Salman Avatar asked Feb 13 '23 02:02

Salman


1 Answers

There are two potential locations (the one you mentioned is the default):

- <domain home>/servers/<server_name>/logs
- Admin Console->Servers->Server Name->Logging tab->Log file name

If you're not seeing the debug/stack traces you expect, you should use the Advanced section on the Logging tab and turn up the Severity Level for the log file and standard out.

You can also set Redirect stdout logging enabled and Redirect stderr logging enabled to ensure everything you expect gets to the log file.

That said, the application you are running could be using it's own logging location and ignore everything above.

like image 189
Display Name is missing Avatar answered Feb 15 '23 02:02

Display Name is missing