Christoph Maier
04/14/2024, 1:30 PMcace-gui -t
,
cace barfs at me:
Process Process-1:
Traceback (most recent call last):
File "/usr/lib/python3.8/multiprocessing/process.py", line 315, in _bootstrap
self.run()
File "/usr/lib/python3.8/multiprocessing/process.py", line 108, in run
self._target(*self._args, **self._kwargs)
File "/home/cmaier/.local/lib/python3.8/site-packages/cace/cace_gui.py", line 939, in cace_process
sys.stdout = self.stdout
AttributeError: 'CACECharacterize' object has no attribute 'stdout'
This isn't anywhere near a time-critical chokepoint at the moment,
but should maybe get fixed nonetheless.Tim Edwards
04/14/2024, 2:52 PMcace/cace_gui.py
lines 939 and following from:
sys.stdout = self.stdout
sys.stderr = self.stderr
to
try:
sys.stdout = self.stdout
sys.stderr = self.stderr
except:
pass
Output logging in CACE definitely needs some work.Tim Edwards
04/15/2024, 4:02 PMChristoph Maier
04/15/2024, 4:08 PMChristoph Maier
04/17/2024, 12:25 AMLuis Henrique Rodovalho
04/17/2024, 8:10 AMChristoph Maier
04/17/2024, 11:08 AMLuis Henrique Rodovalho
04/17/2024, 6:11 PMChristoph Maier
04/17/2024, 6:26 PMLuis Henrique Rodovalho
04/17/2024, 6:53 PMChristoph Maier
04/17/2024, 7:09 PMLuis Henrique Rodovalho
04/17/2024, 7:39 PMTim Edwards
04/17/2024, 7:42 PMChristoph Maier
04/17/2024, 7:47 PMLuis Henrique Rodovalho
04/17/2024, 8:32 PMChristoph Maier
04/18/2024, 10:40 AMLuis Henrique Rodovalho
04/18/2024, 11:14 AM