IDEMPIERE-6249: CLogFormatter.fillExceptionTrace should filter org.adempiere. and org.idempiere. (#2462)
This commit is contained in:
parent
afa5dcfeae
commit
b4532b3eb8
|
|
@ -303,7 +303,7 @@ public class CLogFormatter extends Formatter
|
||||||
int adempiereTraceNo = 0;
|
int adempiereTraceNo = 0;
|
||||||
for (int i=0; i < trace.length; i++)
|
for (int i=0; i < trace.length; i++)
|
||||||
{
|
{
|
||||||
adempiereTrace = trace[i].getClassName().startsWith("org.compiere.");
|
adempiereTrace = trace[i].getClassName().startsWith("org.compiere.") || trace[i].getClassName().startsWith("org.adempiere.") || trace[i].getClassName().startsWith("org.idempiere.");
|
||||||
if (thrown instanceof ServerException // RMI
|
if (thrown instanceof ServerException // RMI
|
||||||
|| adempiereTrace)
|
|| adempiereTrace)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue