Author: fhanik
Date: Mon Apr  3 15:38:54 2006
New Revision: 391160

URL: http://svn.apache.org/viewcvs?rev=391160&view=rev
Log:
fixed logging

Modified:
    
tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/context/ReplicatedContext.java

Modified: 
tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/context/ReplicatedContext.java
URL: 
http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/context/ReplicatedContext.java?rev=391160&r1=391159&r2=391160&view=diff
==============================================================================
--- 
tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/context/ReplicatedContext.java
 (original)
+++ 
tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/context/ReplicatedContext.java
 Mon Apr  3 15:38:54 2006
@@ -53,8 +53,8 @@
             }
             super.start();
         }  catch ( Exception x ) {
-            log.error("Unable to start BackupManager",x);
-            throw new LifecycleException("Failed to start BackupManager",x);
+            log.error("Unable to start ReplicatedContext",x);
+            throw new LifecycleException("Failed to start 
ReplicatedContext",x);
         }
     }
     
@@ -67,8 +67,8 @@
         if ( !this.started ) return;
         try {
         } catch ( Exception x ){
-            log.error("Unable to stop BackupManager",x);
-            throw new LifecycleException("Failed to stop BackupManager",x);
+            log.error("Unable to stop ReplicatedContext",x);
+            throw new LifecycleException("Failed to stop ReplicatedContext",x);
         } finally {
             super.stop();
         }



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

Reply via email to