fix: 解析参数打印错误

Signed-off-by: 502647092 <admin@yumc.pw>
merge/11/HEAD
502647092 2017-09-30 19:58:12 +08:00
parent 2945232a71
commit 6c5d9e26da
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public class CommandParse {
throw new ParseException(String.format("第 %s 个参数 %s", isMain ? 1 : 2 + i, e.getMessage()));
}
}
Log.d("解析参数: %s => %s", Arrays.toString(args), Log.getSimpleNames(pobjs));
Log.d("解析参数: %s => %s", Arrays.toString(args), Log.getSimpleNames(pobjs.toArray()));
return pobjs.toArray();
}