Say I have a While
loop that runs forever(it does system monitoring).
It has three conditions,
While True:
if something1
Everything is OK!
if something2
Warning
if something3
Error
The first, I don't want anything for. The second, I'd like to add a warning to a logfile. For the third, the same - except it's an error.
Since these are in a while loop, can I still just add a logger to something2 and something3? Do I start out with the below?
import logging
logger = logging.getLogger()
But how do I add warning and error to each respective if statement so it writes to the same logfile?