mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
fix printStack()
logi() stuff isn't showing up, so use logd().
This commit is contained in:
parent
579f11613f
commit
3ccdd5a6e2
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ public class DbgUtils {
|
||||||
if ( s_doLog && null != trace ) {
|
if ( s_doLog && null != trace ) {
|
||||||
// 2: skip printStack etc.
|
// 2: skip printStack etc.
|
||||||
for ( int ii = 2; ii < trace.length; ++ii ) {
|
for ( int ii = 2; ii < trace.length; ++ii ) {
|
||||||
DbgUtils.logi( DbgUtils.class, "ste %d: %s", ii, trace[ii].toString() );
|
DbgUtils.logd( DbgUtils.class, "ste %d: %s", ii, trace[ii].toString() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue