Merge "Log ComponentName.className instead of the class ComponentName" into udc-dev

This commit is contained in:
Brian Lee
2023-04-03 16:43:14 +00:00
committed by Android (Google) Code Review

View File

@@ -179,7 +179,7 @@ public class RemoteLockscreenValidationClientImpl implements RemoteLockscreenVal
PackageManager.ComponentInfoFlags.of(PackageManager.GET_META_DATA)); PackageManager.ComponentInfoFlags.of(PackageManager.GET_META_DATA));
} catch (PackageManager.NameNotFoundException e) { } catch (PackageManager.NameNotFoundException e) {
Log.w(TAG, TextUtils.formatSimple("Cannot resolve service %s", Log.w(TAG, TextUtils.formatSimple("Cannot resolve service %s",
serviceComponent.getClass().getName())); serviceComponent.getClassName()));
return null; return null;
} }
} }