[Bug 255238] New: actf.core does not close the trace.out file in stop method
diff --git a/plugins/org.eclipse.actf.core/src/org/eclipse/actf/core/ActfCorePlugin.java b/plugins/org.eclipse.actf.core/src/org/eclipse/actf/core/ActfCorePlugin.java
index df9510f..6a4d8bf 100644
--- a/plugins/org.eclipse.actf.core/src/org/eclipse/actf/core/ActfCorePlugin.java
+++ b/plugins/org.eclipse.actf.core/src/org/eclipse/actf/core/ActfCorePlugin.java
@@ -195,6 +195,7 @@
 
 	public void stop (BundleContext context) throws Exception {
 		LoggingUtil.println(IReporter.INFO, getClass().getName() + " stopped");
+		LoggingUtil.closeTracer();
 		super.stop(context);
 	}