Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-debug-dev] Exception in log without stack trace

Sometimes I find these in the .log file:

"An exception stack trace could not be found."

Any hints on how to most efficiently debug this?

Just a fleeting idea: perhaps it could be useful to add a breakpoint
site in eclipse.cdt.core...

static public void silenceException(Throwable e)
{
	int x=0; // breakpoint site
}


To silence an exception, the procedure would be:

catch (Throwable x)
{
	org.eclipse.foo.bar.silenceException(x);
}

-- 
Øyvind Harboe
http://www.zylin.com




Back to the top