I have a python script with logging that outputs to stdout
logger = logging.getLogger()
ch = logging.StreamHandler(sys.stdout)
ch.setLevel(v_level)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
logger.addHandler(ch)
It works just fine when I run my script on my linux box, but when I run the script in git-bash on windows, there is no output to the console.
Any thoughts?