[jboss-cvs] JBossAS SVN: r71247 - projects/jboss-deployers/trunk/deployers-impl/src/main/org/jboss/deployers/plugins/deployers.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 25 11:35:05 EDT 2008


Author: alesj
Date: 2008-03-25 11:35:05 -0400 (Tue, 25 Mar 2008)
New Revision: 71247

Modified:
   projects/jboss-deployers/trunk/deployers-impl/src/main/org/jboss/deployers/plugins/deployers/DeployersImpl.java
Log:
Adding human readable information for not found dependencies.

Modified: projects/jboss-deployers/trunk/deployers-impl/src/main/org/jboss/deployers/plugins/deployers/DeployersImpl.java
===================================================================
--- projects/jboss-deployers/trunk/deployers-impl/src/main/org/jboss/deployers/plugins/deployers/DeployersImpl.java	2008-03-25 15:07:37 UTC (rev 71246)
+++ projects/jboss-deployers/trunk/deployers-impl/src/main/org/jboss/deployers/plugins/deployers/DeployersImpl.java	2008-03-25 15:35:05 UTC (rev 71247)
@@ -701,7 +701,7 @@
                   dependency = iDependOn.toString();
                   ControllerContext other = controller.getContext(iDependOn, null);
                   if (other == null)
-                     actualStateString = "** NOT FOUND **";
+                     actualStateString = "** NOT FOUND " + item.toHumanReadableString() + " **";
                   else
                   {
                      actualState = other.getState();




More information about the jboss-cvs-commits mailing list