i can write to the file with no issues, but cant read. i have defined the file to append so as not to overwrite data. then i write to it
log_file.writelines(lines)
but the reading wont work??
log_file.readlines(lines)
and thought i could just use
log_file = open('%s' % os.path.join(logfile_path, file), 'a+r')