Log.v(TAG, String.format("Create console %s, command: %s, args: %s",
this.mShell.getId(),
this.mShell.getCommand(),
this.mShell.getArguments()));
使用String.format中的%s提高打Log的效率
最新推荐文章于 2024-08-21 13:40:27 发布
Log.v(TAG, String.format("Create console %s, command: %s, args: %s",
this.mShell.getId(),
this.mShell.getCommand(),
this.mShell.getArguments()));