# HG changeset patch # User Eugene Ostroukhov # Date 1270666272 25200 # Node ID d4abe1c863d17cb4b70a4fdb63f677a1e1709294 # Parent 4cedf26eaa830fb7e264a31a4dd40e437d35b33f Bug 2429 - debug output sent to console diff -r 4cedf26eaa83 -r d4abe1c863d1 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; }