Fixed bug 518416: org.eclipse.e4.ui.internal.workbench.Activator.getLogService() implements LogService
diff --git a/tests/org.eclipse.e4.ui.bindings.tests/META-INF/MANIFEST.MF b/tests/org.eclipse.e4.ui.bindings.tests/META-INF/MANIFEST.MF
index e7323b6..6232313 100644
--- a/tests/org.eclipse.e4.ui.bindings.tests/META-INF/MANIFEST.MF
+++ b/tests/org.eclipse.e4.ui.bindings.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: UI Bindings Tests
 Bundle-SymbolicName: org.eclipse.e4.ui.bindings.tests
-Bundle-Version: 0.10.100.qualifier
+Bundle-Version: 0.12.100.qualifier
 Bundle-Activator: org.eclipse.e4.ui.bindings.tests.Activator
 Bundle-RequiredExecutionEnvironment: JavaSE-1.8
 Bundle-ActivationPolicy: lazy
diff --git a/tests/org.eclipse.e4.ui.bindings.tests/pom.xml b/tests/org.eclipse.e4.ui.bindings.tests/pom.xml
index b0705ad..f644f71 100644
--- a/tests/org.eclipse.e4.ui.bindings.tests/pom.xml
+++ b/tests/org.eclipse.e4.ui.bindings.tests/pom.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright (c) 2012, 2016 Eclipse Foundation and others.
+  Copyright (c) 2012, 2017 Eclipse Foundation and others.
   All rights reserved. This program and the accompanying materials
   are made available under the terms of the Eclipse Distribution License v1.0
   which accompanies this distribution, and is available at
@@ -19,7 +19,7 @@
   </parent>
   <groupId>org.eclipse.e4</groupId>
   <artifactId>org.eclipse.e4.ui.bindings.tests</artifactId>
-  <version>0.10.100-SNAPSHOT</version>
+  <version>0.12.100-SNAPSHOT</version>
   <packaging>eclipse-test-plugin</packaging>
 
 </project>
diff --git a/tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/Activator.java b/tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/Activator.java
index 23f46e8..17e1ecf 100644
--- a/tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/Activator.java
+++ b/tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/Activator.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2013 IBM Corporation and others.
+ * Copyright (c) 2013, 2017 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -11,12 +11,11 @@
 package org.eclipse.e4.ui.bindings.tests;
 
 
-import org.eclipse.e4.core.contexts.EclipseContextFactory;
-import org.eclipse.e4.core.contexts.IEclipseContext;
 import org.osgi.framework.BundleActivator;
 import org.osgi.framework.BundleContext;
-import org.osgi.framework.ServiceReference;
-import org.osgi.service.log.LogService;
+
+import org.eclipse.e4.core.contexts.EclipseContextFactory;
+import org.eclipse.e4.core.contexts.IEclipseContext;
 
 /**
  * The activator class controls the plug-in life cycle
@@ -46,38 +45,6 @@
 		plugin = this;
 		serviceContext = EclipseContextFactory.getServiceContext(context);
 		appContext = serviceContext.createChild();
-		addLogService(appContext);
-	}
-
-	private void addLogService(IEclipseContext context) {
-		context.set(LogService.class.getName(), new LogService() {
-
-			@Override
-			public void log(int level, String message) {
-				System.out.println(level + ": " + message);
-			}
-
-			@Override
-			public void log(int level, String message, Throwable exception) {
-				System.out.println(level + ": " + message);
-				if (exception != null) {
-					exception.printStackTrace();
-				}
-			}
-
-			@Override
-			public void log(ServiceReference sr, int level, String message) {
-				// TODO Auto-generated method stub
-
-			}
-
-			@Override
-			public void log(ServiceReference sr, int level, String message,
-					Throwable exception) {
-				// TODO Auto-generated method stub
-
-			}
-		});
 	}
 
 	@Override