Author: gnodet
Date: Thu Aug 31 23:32:25 2006
New Revision: 439206

URL: http://svn.apache.org/viewvc?rev=439206&view=rev
Log:
Improve message when install/deploy is pending due to missing dependencies.
Also log it at WARN

Modified:
    
incubator/servicemix/trunk/servicemix-core/src/main/java/org/apache/servicemix/jbi/framework/AutoDeploymentService.java

Modified: 
incubator/servicemix/trunk/servicemix-core/src/main/java/org/apache/servicemix/jbi/framework/AutoDeploymentService.java
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-core/src/main/java/org/apache/servicemix/jbi/framework/AutoDeploymentService.java?rev=439206&r1=439205&r2=439206&view=diff
==============================================================================
--- 
incubator/servicemix/trunk/servicemix-core/src/main/java/org/apache/servicemix/jbi/framework/AutoDeploymentService.java
 (original)
+++ 
incubator/servicemix/trunk/servicemix-core/src/main/java/org/apache/servicemix/jbi/framework/AutoDeploymentService.java
 Thu Aug 31 23:32:25 2006
@@ -248,8 +248,8 @@
                             checkPendingSAs();
                         } else {
                             entry.pending = true;
-                            log.info("Shared libraries " + missings + " are 
not installed yet - adding Component "
-                                            + componentName + " to pending 
list");
+                            log.warn("Shared libraries " + missings + " are 
not installed yet: the component" + componentName + 
+                                     " installation is suspended and will be 
resumed once the listed shared libraries are installed");
                             pendingComponents.put(tmpDir, entry);
                         }
                     } catch (Exception e) {
@@ -299,8 +299,8 @@
                         } else {
                             // TODO: check that the assembly is not already 
pending
                                entry.pending = true;
-                            log.info("Components " + missings + " are not 
installed yet - adding ServiceAssembly "
-                                            + name + " to pending list");
+                            log.warn("Components " + missings + " are not 
installed yet: the service assembly " + name + 
+                                     " deployment is suspended and will be 
resumed once the listed components are installed");
                             pendingSAs.put(tmpDir, entry);
                         }
                     } catch (Exception e) {


Reply via email to