Skip to content

Commit

Permalink
Subsonic: Correct the final entry that uses a non-MA logger (#1578)
Browse files Browse the repository at this point in the history
Signed-off-by: Eric B Munson <[email protected]>
  • Loading branch information
khers authored Aug 19, 2024
1 parent d7b47eb commit cbcca96
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from __future__ import annotations

import asyncio
import logging
from typing import TYPE_CHECKING

from libopensonic.connection import Connection as SonicConnection
Expand Down Expand Up @@ -119,9 +118,7 @@ async def handle_async_init(self) -> None:
self._seek_support = True
break
except OSError:
logging.getLogger("libopensonic").info(
"Server does not support transcodeOffset, seeking in player provider"
)
self.logger.info("Server does not support transcodeOffset, seeking in player provider")

@property
def supported_features(self) -> tuple[ProviderFeature, ...]:
Expand Down

0 comments on commit cbcca96

Please sign in to comment.