9 lines
183 B
Python
9 lines
183 B
Python
import logging
|
|
|
|
def setup_logging():
|
|
"""
|
|
Sets up the logging for the application.
|
|
"""
|
|
logging.basicConfig(level=logging.INFO)
|
|
logger = logging.getLogger(__name__)
|