Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-07-08 09:07:36 +0000
committerEike Stepper2011-07-08 09:07:36 +0000
commit347a060850aa2a83e3f70232445c2b591c2df654 (patch)
treed78b7e17e3334c7ee3d415b2235fd6e3333298a9 /plugins
parentd342a3d137eabb2d2dafafc27673fdd076eae11c (diff)
downloadcdo-347a060850aa2a83e3f70232445c2b591c2df654.tar.gz
cdo-347a060850aa2a83e3f70232445c2b591c2df654.tar.xz
cdo-347a060850aa2a83e3f70232445c2b591c2df654.zip
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/bundle/CDOServerApplication.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/bundle/CDOServerApplication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/bundle/CDOServerApplication.java
index 742d919a0f..f914068728 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/bundle/CDOServerApplication.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/bundle/CDOServerApplication.java
@@ -61,7 +61,7 @@ public class CDOServerApplication extends OSGiApplication
repositories = repositoryConfigurator.configure(configFile);
if (repositories == null || repositories.length == 0)
{
- OM.LOG.warn(Messages.getString("CDOServerApplication.3") + configFile.getAbsolutePath()); //$NON-NLS-1$
+ OM.LOG.warn(Messages.getString("CDOServerApplication.3") + " " + configFile.getAbsolutePath()); //$NON-NLS-1$
}
String port = OMPlatform.INSTANCE.getProperty(PROP_BROWSER_PORT);
@@ -74,7 +74,7 @@ public class CDOServerApplication extends OSGiApplication
}
else
{
- OM.LOG.warn(Messages.getString("CDOServerApplication.5") + configFile.getAbsolutePath()); //$NON-NLS-1$
+ OM.LOG.warn(Messages.getString("CDOServerApplication.5") + " " + configFile.getAbsolutePath()); //$NON-NLS-1$
}
OM.LOG.info(Messages.getString("CDOServerApplication.6")); //$NON-NLS-1$

Back to the top