Useing logging.getLogger(__name__) in django where can i define logger path [closed]

I'm using logger = logging.getLogger(name) where can I define logger path in django.

logger.warning("Batch files not found.") logger.error('error1') I want to know the log file path and how will create that path?

Back to Top