def logger()

in fiosynth_lib/health_tools.py [0:0]


    def logger(self, syntax):
        FILENAME = "health.log"
        file_ = open(FILENAME, "a")
        subprocess.Popen("date", stdout=file_)
        subprocess.Popen(syntax, stdout=file_, shell=True)
        file_.close()