Marci-man
Marci-man

Reputation: 2233

Remote Glassfish 3.2.1 server suddenly stops showing log in Netbeans 7

Oh please!!

I have been working with a remote Glassfish 3 with Netbeans 7 for a week.
Suddenly my Glassfish server stopped logging... The logs don't show up anywhere... not in Netbeans not anywhere else!

I friggin uninstalled the server and reinstalled it, but again the same old same old!

Could someone please help me out here...

Upvotes: 0

Views: 661

Answers (1)

Anthony Accioly
Anthony Accioly

Reputation: 22461

Seems like your logger is being redirected somewhere else but the standard server.log file. You can try to deploy a different application and see if it is able to log into server.log.

If it does then your should check your original application for Apache Log4J, Commons Logging or similar libraries configuration files, they may be redirecting your output somewhere else (such as a a file or database).

If it does not then the problem may be your Application Server Logging configuration. Check if the Log is being redirected to server.log, if the log levels are set adequately and if some custom logging.properties file or Log Handler are not killing the log output or redirecting it somewhere else.

Upvotes: 1

Related Questions