1
0
mirror of https://e.coding.net/circlecloud/YumCore.git synced 2024-12-03 03:38:46 +00:00

fix: 解析参数打印错误

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
502647092 2017-09-30 19:58:12 +08:00
parent 2945232a71
commit 6c5d9e26da

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();
}