logging
diff --git a/modeling/plugins/org.eclipse.pde.emfforms/src/org/eclipse/pde/emfforms/editor/EmfFormEditor.java b/modeling/plugins/org.eclipse.pde.emfforms/src/org/eclipse/pde/emfforms/editor/EmfFormEditor.java
index 85b7507..50edb70 100644
--- a/modeling/plugins/org.eclipse.pde.emfforms/src/org/eclipse/pde/emfforms/editor/EmfFormEditor.java
+++ b/modeling/plugins/org.eclipse.pde.emfforms/src/org/eclipse/pde/emfforms/editor/EmfFormEditor.java
@@ -8,7 +8,7 @@
  * Contributors:
  *     Anyware Technologies - initial API and implementation
  *
- * $Id: EmfFormEditor.java,v 1.10 2009/07/05 17:00:20 bcabe Exp $
+ * $Id: EmfFormEditor.java,v 1.11 2009/07/05 20:22:09 bcabe Exp $
  */
 package org.eclipse.pde.emfforms.editor;
 
@@ -628,8 +628,7 @@
 										setMainResource(changedResource);
 									}
 								} catch (IOException ioe) {
-									ioe.printStackTrace();
-									//Activator.log(ioe);
+									Activator.log(ioe);
 								}
 							}
 						}
@@ -716,7 +715,7 @@
 	}
 
 	/**
-	 * This deals with how we want selection in the outliner to affect the other views.
+	 * This deals with how we want selection in the outline to affect the other views.
 	 */
 	public void handleContentOutlineSelection(ISelection selection) {
 		if (!selection.isEmpty() && selection instanceof IStructuredSelection) {
@@ -769,8 +768,7 @@
 			ResourceDeltaVisitor visitor = new ResourceDeltaVisitor();
 			delta.accept(visitor);
 		} catch (CoreException ce) {
-			ce.printStackTrace();
-			//Activator.log(ce);
+			Activator.log(ce);
 		}
 	}