Reputation: 794
I have an application running on JBoss AS 7 and creating log files in /standalone/log
.
For security reasons I not allowed to browse JBoss directories. Is there any build-in application to read these logs files from a browser ?
NB : I cannot use admin console either.
Upvotes: 2
Views: 2344
Reputation: 46796
Not yet, but there are some requests for it (one by me, BTW ;-) and it might appear in WildFlz 8. Hopefully. (Vote on them if you like.)
Until then, I suggest to ask the admins to allow access to that one particular log file.
If that doesn't pass through, you may declare dependency of your deployment on a logging service's modules (Dependencies: ...
in MANIFEST.MF
) and the log manager in JVM. Unless there's some additional obstacle like security manager or so.
Upvotes: 0
Reputation: 17630
No, nothing built in. You can have the admins configure the logging service to put logs where you can get to them, or you can configure the logger to capture logs and post to a database or other.
Upvotes: 1