Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2012-07-18 20:46:54 +0000
committerRoberto E. Escobar2012-07-18 20:46:54 +0000
commit852215be1758b9fd9ef8c4cae6af686a0dd41973 (patch)
tree9b4ad4f996fe8fe50f33980fc4420ed21e78fc2e /plugins/org.eclipse.osee.console.admin
parent705734dfcb0e3f065cdead8116812707406023b5 (diff)
downloadorg.eclipse.osee-852215be1758b9fd9ef8c4cae6af686a0dd41973.tar.gz
org.eclipse.osee-852215be1758b9fd9ef8c4cae6af686a0dd41973.tar.xz
org.eclipse.osee-852215be1758b9fd9ef8c4cae6af686a0dd41973.zip
refactor: Remove newline from log debug messages
Diffstat (limited to 'plugins/org.eclipse.osee.console.admin')
-rw-r--r--plugins/org.eclipse.osee.console.admin/src/org/eclipse/osee/console/admin/internal/ConsoleAdmin.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.console.admin/src/org/eclipse/osee/console/admin/internal/ConsoleAdmin.java b/plugins/org.eclipse.osee.console.admin/src/org/eclipse/osee/console/admin/internal/ConsoleAdmin.java
index 0176bc47913..5021e296865 100644
--- a/plugins/org.eclipse.osee.console.admin/src/org/eclipse/osee/console/admin/internal/ConsoleAdmin.java
+++ b/plugins/org.eclipse.osee.console.admin/src/org/eclipse/osee/console/admin/internal/ConsoleAdmin.java
@@ -114,7 +114,7 @@ public class ConsoleAdmin {
String contextName = ConsoleAdminUtils.getContextName(props);
getDispatcher().unregister(componentName);
- getLogger().debug("De-registering command for '%s' with alias '%s'\n", componentName, contextName);
+ getLogger().debug("De-registering command for [%s] with alias [%s]", componentName, contextName);
notifyDeRegistration(componentName, contextName);
}
@@ -125,7 +125,7 @@ public class ConsoleAdmin {
try {
getDispatcher().register(componentName, consoleCommand);
notifyRegistration(componentName, contextName);
- getLogger().debug("Registered command for '%s' with alias '%s'\n", componentName, contextName);
+ getLogger().debug("Registered command for [%s] with alias [%s]", componentName, contextName);
} catch (Exception ex) {
throw new RuntimeException(ex);
}

Back to the top