Hello,
I'm pretty new to Python programming so I have this question:
How can I log a Python application activity into /var/log with Mac OS X?
I tried using syslog module, but it does not seem to write anything. I tried also with the logging module, but I always run into a permission error.
How can I do it?
Update:
import logging
import time
LOG_FILENAME = "/var/log/writeup.log" + time.strftime("%Y-%m-%d")
LOG_FORMAT = "%(asctime)s - %(filename)s - %(levelname)s - %(message)s"
log = logging.getLogger("main.py")
log.setLevel(logging.DEBUG)
ch = logging.FileHandler(LOG_FILENAME)
ch.setLevel(logging.DEBUG)
format = logging.Formatter(LOG_FORMAT)
ch.setFormatter(format)
log.addHandler(ch)