I'm writing a Windows service in Python, using win32service, as described in the top answer of this question. It works.
However, as I write the code, anytime I make a mistake (say, a typo in a variable name), the only feedback I get is that the service dies.
Where can I see the regular python errors?
Edit: I should have stated that adding a TimedRotatingFileHandler is pretty much the only thing I've added so far - and yes, it works, but it's useless to catch typos or when forgetting to prefix variables names with "self.". I still have to experiment with catching the exceptions but even if I get that to work, in my mind, it's still a workaround, not a true solution.