neater UX
This commit is contained in:
parent
ba4624d843
commit
3247cdbc40
1 changed files with 7 additions and 6 deletions
|
|
@ -215,16 +215,17 @@ def full_integrity_check(path: Path) -> None:
|
||||||
path: Path
|
path: Path
|
||||||
Path to the backlog-library to check.
|
Path to the backlog-library to check.
|
||||||
"""
|
"""
|
||||||
|
print("Run full integrity check...")
|
||||||
check_path_and_config(path)
|
check_path_and_config(path)
|
||||||
print("Path and config-file exist:\t✅")
|
print("(1/5) Path and config-file exist: ✅")
|
||||||
check_config_validity(path)
|
check_config_validity(path)
|
||||||
print("Configuration is valid:\t✅")
|
print("(2/5) Configuration is valid: ✅")
|
||||||
check_paths(path)
|
check_paths(path)
|
||||||
print("Needed paths exist:\t✅")
|
print("(3/5) Needed paths exist: ✅")
|
||||||
check_db_integrity(path)
|
check_db_integrity(path)
|
||||||
print("DB:\t✅")
|
print("(4/5) Database is sane: ✅")
|
||||||
check_db_file_links(path)
|
check_db_file_links(path)
|
||||||
print("Links:\t✅")
|
print("(5/5) DB2File and File2DB-links are sound: ✅")
|
||||||
print("Full:\t✅")
|
print("Full integrity check: ✅")
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue