Index: src/org/apache/geronimo/st/core/GeronimoServerBehaviourDelegate.java =================================================================== --- src/org/apache/geronimo/st/core/GeronimoServerBehaviourDelegate.java (revision 518174) +++ src/org/apache/geronimo/st/core/GeronimoServerBehaviourDelegate.java (working copy) @@ -399,14 +399,14 @@ if (configId == null) { IStatus status = distribute(module); if (!status.isOK()) { - doFail(status, Messages.DISTRIBUTE_FAIL); + doFail(status, Messages.bind(Messages.DISTRIBUTE_FAIL, module.getProject().getName())); } TargetModuleID[] ids = updateServerModuleConfigIDMap(module, status); status = start(ids); if (!status.isOK()) { - doFail(status, Messages.START_FAIL); + doFail(status, Messages.bind(Messages.START_FAIL, module.getProject().getName())); } } else { //either (1) a configuration with the same module id exists already on the server @@ -432,7 +432,7 @@ if(moduleConfigId.equals(configId)) { IStatus status = reDeploy(module); if (!status.isOK()) { - doFail(status, Messages.REDEPLOY_FAIL); + doFail(status, Messages.bind(Messages.REDEPLOY_FAIL, module.getProject().getName())); } } else { //different configIds from what needs to be undeployed to what will be deployed @@ -459,7 +459,7 @@ IStatus status = unDeploy(module); if (!status.isOK()) { - doFail(status, Messages.UNDEPLOY_FAIL); + doFail(status, Messages.bind(Messages.UNDEPLOY_FAIL, module.getProject().getName())); } ModuleArtifactMapper.getInstance().removeEntry(getServer(), module.getProject()); @@ -484,12 +484,12 @@ IStatus status = stop(module); if (!status.isOK()) { - doFail(status, Messages.STOP_FAIL); + doFail(status, Messages.bind(Messages.STOP_FAIL, module.getProject().getName())); } status = start(module); if (!status.isOK()) { - doFail(status, Messages.START_FAIL); + doFail(status, Messages.bind(Messages.START_FAIL, module.getProject().getName())); } Trace.trace(Trace.INFO, ">> doRestart() " + module.toString()); Index: src/org/apache/geronimo/st/core/internal/Messages.properties =================================================================== --- src/org/apache/geronimo/st/core/internal/Messages.properties (revision 518174) +++ src/org/apache/geronimo/st/core/internal/Messages.properties (working copy) @@ -16,11 +16,11 @@ # # $Rev$ $Date$ # -DISTRIBUTE_FAIL=Distribution of configuration failed. See log for details. -START_FAIL=Starting of configuration failed. See log for details. -STOP_FAIL=Stopping of configuration failed. See log for details. -UNDEPLOY_FAIL=Undeploy of configuration failed. See log for details. -REDEPLOY_FAIL=Redeploy of configuration failed. See log for details. +DISTRIBUTE_FAIL=Distribution of project '{0}' failed. See log for details. +START_FAIL=Starting of project '{0}' failed. See log for details. +STOP_FAIL=Stopping of project '{0}' failed. See log for details. +UNDEPLOY_FAIL=Undeploy of project '{0}' failed. See log for details. +REDEPLOY_FAIL=Redeploy of project '{0}' failed. See log for details. DM_CONNECTION_FAIL=Connection to deployment manager failed. See log for details. target10runtime=Geronimo v1.0 Runtime