Update log.py: remove debug statement

This commit is contained in:
Alexandre Aubin 2024-07-17 16:42:51 +02:00 committed by GitHub
parent 95f3219923
commit 1c6821e458
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -111,7 +111,6 @@ def _update_log_parent_symlinks():
parent = metadata.get("parent")
parent = parent + METADATA_FILE_EXT if parent else "/dev/null"
try:
print(parent, parent_symlink)
os.symlink(parent, parent_symlink)
except Exception as e:
logger.warning(f"Failed to create symlink {parent_symlink} ? {e}")