You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To save the log file into .csv file, I go to Log Blocks and press "Write to file"
This function works fine for the first time however it won't log data the next time.
After first logging into file, next file only contain Timestamp data.
So I have to re run the client everytime I want to log into files.
Attached is the log file created by cfclient
I investigated this issue myself and found there is a bug in logdatawriter.py in /src/cfclient/utils
in line 87, where def stop(selft):
it does not exclusively reset self.header_written to False after resetting self.header_values = []
Adding just
self._header_written = False
remedied this issue and successfully can log into files after again.
To save the log file into .csv file, I go to Log Blocks and press "Write to file"
This function works fine for the first time however it won't log data the next time.
After first logging into file, next file only contain Timestamp data.
So I have to re run the client everytime I want to log into files.
Attached is the log file created by cfclient
Kyu
log.zip
The text was updated successfully, but these errors were encountered: