赞
踩
%{private}s
和%{public}d
指定输出日志信息时是否需要指明显示输出结果,其中s和d是参数 HiLogLabel label=new HiLogLabel(HiLog.LOG_APP, 0x00201, "TAG");
HiLog.error(label,"log日志");
状态栏切换到HiLog标签下,选择要查看的设备,选择设备类型(Error),service domain输入00201
HiLogLabel(int type, int domain, String tag)
参数类型 | 说明 |
---|---|
type | 输出日志类型(见type表) |
domain | 从0x0到0xFFFFF的十六进制整数 |
tag | 用于标识方法调用的类或服务行为的字符串常量 |
type | 值 |
---|---|
HiLog.LOG_APP | 0 |
HiLog.DEBUG | 3 |
HiLog.INFO | 4 |
HiLog.WARN | 5 |
HiLog.ERROR | 6 |
HiLog.FATAL | 7 |
HiLog.info(HiLogLabel label, String format, Object... args)
方法 | 参数一 | 参数二 | 参数三(可变参数) |
---|---|---|---|
debug | label | 输出Log内容 | 可空 |
info | label | 输出Log内容 | 可空 |
warn | label | 输出Log内容 | 可空 |
error | label | 输出Log内容 | 可空 |
fatal | label | 输出Log内容 | 可空 |
%{private}s
,其中s是要输出的内容,输出时不显示内容%{public}d
,其中d是要输出的内容,输出时正确显示 String url="localhost";
int errno=500;
HiLogLabel label=new HiLogLabel(HiLog.LOG_APP, 0x00201, LogUtils.class.getSimpleName());
HiLog.warn(label, "Failed to visit %{private}s, reason:%{public}d.", url, errno);
12-28 17:34:59.359 25702-25702/? W 00201/LogUtils: Failed to visit <private>, reason:500.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。