Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd65cd4e authored by Yo Chiang's avatar Yo Chiang
Browse files

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
parent d15cbc37
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
        }
    }
+1 −1
Original line number Diff line number Diff line
@@ -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";