DO NOT REPLY [Bug 34110] - The message SEVERE: Error listenerStart should be more explicit

2005-03-22 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=34110.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=34110


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Resolution||INVALID
 Status|NEW |RESOLVED




--- Additional Comments From [EMAIL PROTECTED]  2005-03-22 11:32 ---
Enough is logged already, including a stack trace (I verified this).

I have tweaked the logging a little bit more.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 34110] - The message SEVERE: Error listenerStart should be more explicit

2005-03-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=34110.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=34110





--- Additional Comments From [EMAIL PROTECTED]  2005-03-21 22:45 ---
It did not get fixed because I do not think there's a bug in the first place.
It's logged to the webapp's servlet context logger, as error. Why don't you see 
it ?

Look in the source:

boolean ok = true;
for (int i = 0; i  results.length; i++) {
if (log.isDebugEnabled())
log.debug( Configuring event listener class ' +
listeners[i] + ');
try {
Class clazz = loader.loadClass(listeners[i]);
results[i] = clazz.newInstance();
} catch (Throwable t) {
getServletContext().log
(sm.getString(standardContext.applicationListener,
  listeners[i]), t);
ok = false;
}
}
if (!ok) {
log.error(sm.getString(standardContext.applicationSkipped));
return (false);
}


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]