【2025年1月2日】关于腾讯云小程序平台更名为腾讯云超级应用服务的公告
控制台更新动态
Android SDK 更新动态
iOS SDK 更新动态
Flutter 更新动态
IDE 更新动态
基础库更新动态
@ProxyService(proxy = LogProxy.class)public class LogProxyImpl extends LogProxy {@Overridepublic void log(int logLevel, String tag, String msg, Throwable t) {switch (logLevel) {case Log.DEBUG:if (t == null) {android.util.Log.d(tag, msg);} else {android.util.Log.d(tag, msg, t);}break;case Log.INFO:if (t == null) {android.util.Log.i(tag, msg);} else {android.util.Log.i(tag, msg, t);}break;case Log.WARN:if (t == null) {android.util.Log.w(tag, msg);} else {android.util.Log.w(tag, msg, t);}break;case Log.ERROR:if (t == null) {android.util.Log.e(tag, msg);} else {android.util.Log.e(tag, msg, t);}break;default:if (t == null) {android.util.Log.v(tag, msg);} else {android.util.Log.v(tag, msg, t);}break;}}@Overridepublic boolean isColorLevel() {return true;}}
文档反馈