fix NPE in logging

This commit is contained in:
Eric House 2020-09-06 17:55:47 -07:00
parent 7e19a4ef85
commit 29328e6412

View file

@ -127,7 +127,7 @@ public class DbgUtils {
List<String> strs = new ArrayList<>();
if ( null != params ) {
for ( Object obj : params ) {
strs.add( obj.toString() );
strs.add( String.format( "%s", obj ) );
}
}
return TextUtils.join( ", ", strs );