Make MusicBrainzAPI logs visible

This commit is contained in:
Šarūnas Nejus 2026-02-07 22:36:43 +00:00
parent 84b22fddd5
commit df1573ce9d
No known key found for this signature in database
2 changed files with 2 additions and 4 deletions

View file

@ -31,7 +31,7 @@ if TYPE_CHECKING:
from .._typing import JSONDict
log = logging.getLogger(__name__)
log = logging.getLogger("beets")
LUCENE_SPECIAL_CHAR_PAT = re.compile(r'([-+&|!(){}[\]^"~*?:\\/])')

View file

@ -30,7 +30,7 @@ from typing import TYPE_CHECKING, ClassVar
import beets
import beets.ui
from beets import dbcore, logging
from beets import dbcore
from beets.library import Item
from beets.plugins import BeetsPlugin
from beets.util import as_string, bluelet
@ -39,8 +39,6 @@ from beetsplug._utils import vfs
if TYPE_CHECKING:
from beets.dbcore.query import Query
log = logging.getLogger(__name__)
try:
from . import gstplayer