diff --git a/config.py b/config.py index d1cfd403..b1437047 100644 --- a/config.py +++ b/config.py @@ -117,7 +117,7 @@ def git_shorthash_from_head() -> str: out, err = git_cmd.communicate() except Exception as e: - logger.error(f"Couldn't run git command for short hash: {e!r}") + logger.info(f"Couldn't run git command for short hash: {e!r}") else: shorthash = out.decode().rstrip('\n')