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

Commit bb8c568f authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Update log level in BubbleSessionTrackerImpl" into main

parents 4fcd78e4 6ce68f6e
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"
            )