mirror of
https://github.com/netinvent/npbackup.git
synced 2025-09-09 22:46:59 +08:00
WIP: Make binary discovery verbose
This commit is contained in:
parent
4b51ad392c
commit
be66d91d30
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue