mirror of
https://lavaforge.org/spotizerr/spotizerr.git
synced 2025-12-24 02:39:14 -05:00
8 lines
229 B
Python
Executable File
8 lines
229 B
Python
Executable File
import logging
|
|
|
|
# Configure basic logging for the application if not already configured
|
|
# This remains safe to execute on import
|
|
logging.basicConfig(level=logging.INFO, format="%(message)s")
|
|
|
|
logger = logging.getLogger(__name__)
|