Author: djencks
Date: Thu Mar 10 16:59:49 2005
New Revision: 157018

URL: http://svn.apache.org/viewcvs?view=rev&rev=157018
Log:
GERONIMO-600. Finally tracked dain down to check what he meant

Modified:
    
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstanceState.java

Modified: 
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstanceState.java
URL: 
http://svn.apache.org/viewcvs/geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstanceState.java?view=diff&r1=157017&r2=157018
==============================================================================
--- 
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstanceState.java
 (original)
+++ 
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstanceState.java
 Thu Mar 10 16:59:49 2005
@@ -341,7 +341,7 @@
             lifecycleBroadcaster.fireFailedEvent();
 
             if (t instanceof Exception) {
-                log.error("Error while starting; GBean is not in the FAILED 
state: objectName=\"" + objectName + "\"", t);
+                log.error("Error while starting; GBean is now in the FAILED 
state: objectName=\"" + objectName + "\"", t);
             } else if (t instanceof Error) {
                 throw (Error) t;
             } else {
@@ -409,7 +409,7 @@
             lifecycleBroadcaster.fireFailedEvent();
 
             if (t instanceof Exception) {
-                log.error("Error while stopping; GBean is not in the FAILED 
state: objectName=\"" + objectName + "\"", t);
+                log.error("Error while stopping; GBean is now in the FAILED 
state: objectName=\"" + objectName + "\"", t);
             } else if (t instanceof Error) {
                 throw (Error) t;
             } else {


Reply via email to