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

Commit 6ce68f6e authored by Liran Binyamin's avatar Liran Binyamin
Browse files

Update log level in BubbleSessionTrackerImpl

Bug: 438484702
Flag: EXEMPT updating log level
Test: EXEMPT updating log level
Change-Id: Ic51a8435d1552f6a1a0a040c04f036440791b8f4
parent 8a263bad
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ constructor(

    private fun sessionStarted(event: SessionEvent.Started) {
        if (currentSession != null) {
            ProtoLog.d(
            ProtoLog.e(
                ShellProtoLogGroup.WM_SHELL_BUBBLES_NOISY,
                "BubbleSessionTracker: starting to track a new session. " +
                    "previous session still active"
@@ -88,7 +88,7 @@ constructor(
    private fun sessionEnded(event: SessionEvent.Ended) {
        val session = currentSession
        if (session == null) {
            ProtoLog.d(
            ProtoLog.e(
                ShellProtoLogGroup.WM_SHELL_BUBBLES_NOISY,
                "BubbleSessionTracker: session tracking stopped but current session is null"
            )
@@ -104,7 +104,7 @@ constructor(
    private fun switchedBubble(event: SessionEvent.SwitchedBubble) {
        val session = currentSession
        if (session == null) {
            ProtoLog.d(
            ProtoLog.e(
                ShellProtoLogGroup.WM_SHELL_BUBBLES_NOISY,
                "BubbleSessionTracker: tracking bubble switch but current session is null"
            )