Change log tag of DynamicSystemClient to match class name

Expand the "DynSystem" abbreviation to "DynamicSystem".
For simpler log grepping.

Bug: 165471299
Test: No
Change-Id: Ibec692ae45539dacd55e13ffaa903b58f3bf0417
This commit is contained in:
Yo Chiang
2021-01-05 18:17:04 +08:00
parent d15cbc37d5
commit cd65cd4e04
2 changed files with 5 additions and 5 deletions

View File

@@ -68,6 +68,8 @@ import java.util.concurrent.Executor;
*/
@SystemApi
public class DynamicSystemClient {
private static final String TAG = "DynamicSystemClient";
/** @hide */
@IntDef(prefix = { "STATUS_" }, value = {
STATUS_UNKNOWN,
@@ -92,8 +94,6 @@ public class DynamicSystemClient {
@Retention(RetentionPolicy.SOURCE)
public @interface StatusChangedCause {}
private static final String TAG = "DynSystemClient";
/** Listener for installation status updates. */
public interface OnStatusChangedListener {
/**
@@ -240,7 +240,7 @@ public class DynamicSystemClient {
private class DynSystemServiceConnection implements ServiceConnection {
public void onServiceConnected(ComponentName className, IBinder service) {
Slog.v(TAG, "DynSystemService connected");
Slog.v(TAG, "onServiceConnected: " + className);
mService = new Messenger(service);
@@ -262,7 +262,7 @@ public class DynamicSystemClient {
}
public void onServiceDisconnected(ComponentName className) {
Slog.v(TAG, "DynSystemService disconnected");
Slog.v(TAG, "onServiceDisconnected: " + className);
mService = null;
}
}

View File

@@ -74,7 +74,7 @@ import java.util.ArrayList;
public class DynamicSystemInstallationService extends Service
implements InstallationAsyncTask.ProgressListener {
private static final String TAG = "DynSystemInstallationService";
private static final String TAG = "DynamicSystemInstallationService";
// TODO (b/131866826): This is currently for test only. Will move this to System API.
static final String KEY_ENABLE_WHEN_COMPLETED = "KEY_ENABLE_WHEN_COMPLETED";