mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00
refactor: NVS tool move integrity check from logger to another file
This commit is contained in:
@@ -6,6 +6,7 @@ import os
|
||||
import sys
|
||||
import traceback
|
||||
|
||||
import nvs_check
|
||||
import nvs_logger
|
||||
import nvs_parser
|
||||
from nvs_logger import nvs_log
|
||||
@@ -109,7 +110,7 @@ def main() -> None:
|
||||
|
||||
if args.integrity_check:
|
||||
nvs_log.info()
|
||||
nvs_logger.integrity_check(nvs)
|
||||
nvs_check.integrity_check(nvs, nvs_logger)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Reference in New Issue
Block a user