We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f3abfe commit 7f08e6cCopy full SHA for 7f08e6c
qlib/workflow/recorder.py
@@ -371,7 +371,7 @@ def _log_uncommitted_code(self):
371
out = subprocess.check_output(cmd, shell=True)
372
self.client.log_text(self.id, out.decode(), fname) # this behaves same as above
373
except subprocess.CalledProcessError:
374
- logger.info(f"Fail to log the uncommitted code of $CWD when run `{cmd}`")
+ logger.info(f"Fail to log the uncommitted code of $CWD({os.getcwd()}) when run {cmd}.")
375
376
def end_run(self, status: str = Recorder.STATUS_S):
377
assert status in [
0 commit comments