PythonFreeCourse / calendar

Apache License 2.0
34 stars 52 forks source link

Bugfix/logging system #158

Closed Liad-n closed 3 years ago

Liad-n commented 3 years ago

Disconnected the logger from the app instance due to problematic circular imports when used from within routes. Now to use the logger,

from loguru import logger

and use it this way:

logger.debug(message) logger.error(message) ...