Bug 2429 - debug output sent to console
authorEugene Ostroukhov <eugeneo@symbian.org>
Wed, 07 Apr 2010 11:51:12 -0700
changeset 298 d4abe1c863d1
parent 297 4cedf26eaa83
child 299 a240ab689b9b
Bug 2429 - debug output sent to console
org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/Activator.java
--- a/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/Activator.java	Tue Apr 06 11:23:58 2010 -0700
+++ b/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/Activator.java	Wed Apr 07 11:51:12 2010 -0700
@@ -18,6 +18,9 @@
  *******************************************************************************/
 package org.symbian.tools.wrttools.debug.internal;
 
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
 import org.eclipse.core.runtime.IStatus;
 import org.eclipse.core.runtime.Platform;
 import org.eclipse.core.runtime.Status;
@@ -58,6 +61,7 @@
 	 */
 	public void start(BundleContext context) throws Exception {
 		super.start(context);
+        Logger.getLogger("org.chromium.sdk").setLevel(Level.WARNING);
 		plugin = this;
 	}