WIP: Make binary discovery verbose

This commit is contained in:
deajan 2025-07-01 17:10:22 +02:00
parent 4b51ad392c
commit be66d91d30
2 changed files with 2 additions and 2 deletions

View file

@ -64,5 +64,5 @@ def get_restic_internal_binary(arch: str) -> str:
# Take glob results reversed so we get newer version
# Does not always compute, but is g00denough(TM) for our dev
return guessed_path[-1]
logger.debug(f"Could not find internal restic bianry in {guessed_path}")
logger.info(f"Could not find internal restic bianry in {guessed_path}")
return None

View file

@ -546,7 +546,7 @@ class ResticRunner:
if os.path.isfile(probed_path):
self._binary = probed_path
return
self.write_logs(f"Could not find restic binary in {probe_paths}", level="debug")
self.write_logs(f"Could not find restic binary in {probe_paths}", level="info")
self.write_logs(
"No backup engine binary found. Please install latest binary from restic.net",
level="error",