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

24,147

Solution 1

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.

Solution 2

I agree with @castling. I found these 2 answers that may help.

Weblogic Logging Start Script

Weblogic Enabling Redirect through Admin Console

Share:
24,147

Related videos on Youtube

Salman
Author by

Salman

Public APIs, like diamonds, are forever. You have one chance to get it right so give it your best. Joshua Bloch: Bumper-Sticker API Design

Updated on June 28, 2020

Comments

  • Salman
    Salman almost 4 years

    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()) ?