Currently, PROTEUS just outputs everything to the terminal via print() which doesn't easily enable logging the results to a file. It's possible to wrap PROTEUS using screen but this is clunky and doesn't fit well within GridPROTEUS.
It would be better to use the logging module to print to both the terminal and to a file at the same time.
Currently, PROTEUS just outputs everything to the terminal via
print()
which doesn't easily enable logging the results to a file. It's possible to wrap PROTEUS usingscreen
but this is clunky and doesn't fit well within GridPROTEUS.It would be better to use the
logging
module to print to both the terminal and to a file at the same time.