Skip to content

Commit

Permalink
#FIX - task 1: Logging - won't fix
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 committed Mar 21, 2013
1 parent 605b1f1 commit 2953abb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Expand Up @@ -243,16 +243,14 @@ protected void unbindPreferencesService(IPreferencesService prefService) {
/* ========== Simple Debugging Options ============ */
/* ================================================ */

// TODO GeminiEMFSupplier: Use proper logging infrastructure

protected void trace(String str) {
if (!trace) {
return;
}
System.err.println("[GEMINI_EXT][" + getClass().getSimpleName() + "] " + str);
System.out.println("[GEMINI_EXT][" + getClass().getSimpleName() + "] " + str);
}

protected void error(String str) {
System.err.println("[GEMINI_EXT][" + getClass().getSimpleName() + "] " + str);
System.out.println("[GEMINI_EXT][" + getClass().getSimpleName() + "] " + str);
}
}
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.gemini.ext.di</groupId>
<artifactId>org.eclipse.gemini.ext.di.parent</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho.version>0.16.0</tycho.version>
Expand Down

0 comments on commit 2953abb

Please sign in to comment.