import logging def setup_logging(): """ Sets up the logging for the application. """ logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__)