31217fe
diff --git a/eclipse.platform/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityManager.java b/eclipse.platform/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityManager.java
31217fe
index b6c0d1e68..a35e683d7 100644
31217fe
--- a/eclipse.platform/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityManager.java
31217fe
+++ b/eclipse.platform/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityManager.java
22ade32
@@ -21,13 +21,6 @@
31217fe
 import java.security.Permission;
31217fe
 import java.util.PropertyPermission;
31217fe
 
31217fe
-import org.eclipse.ant.core.AntCorePlugin;
31217fe
-import org.eclipse.ant.core.AntSecurityException;
22ade32
-import org.eclipse.ant.internal.launching.AntLaunching;
31217fe
-import org.eclipse.core.runtime.IStatus;
31217fe
-import org.eclipse.core.runtime.Platform;
31217fe
-import org.eclipse.core.runtime.Status;
31217fe
-
31217fe
 /**
31217fe
  * A security manager that always throws an AntSecurityException if the calling thread attempts to cause the Java Virtual Machine to
31217fe
  * exit/halt or if the restricted thread attempts to set a System property. Otherwise this manager just delegates to the pre-existing manager passed
22ade32
@@ -415,10 +408,8 @@
31217fe
 	}
22ade32
 
22ade32
 	private static void logDeprecatedAccess(Throwable e) {
22ade32
-		Platform.getLog(AntCorePlugin.getPlugin().getBundle()).log(new Status(IStatus.WARNING, AntLaunching.PLUGIN_ID, RemoteAntMessages.getString("AntSecurityManager.deprecatedMethod"), e));  //$NON-NLS-1$
22ade32
 	}
22ade32
 
22ade32
 	private static void logException(Throwable e) {
22ade32
-		Platform.getLog(AntCorePlugin.getPlugin().getBundle()).log(new Status(IStatus.ERROR, AntLaunching.PLUGIN_ID, e.getLocalizedMessage(), e));
22ade32
 	}
22ade32
 }