From 57a2f848803b5e7090c25c725e9a4a2b9ce0807f Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Thu, 20 Apr 2023 16:25:23 -0700 Subject: [PATCH] add more information when config file not found --- libs/base/bflb_base_eflash_loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/base/bflb_base_eflash_loader.py b/libs/base/bflb_base_eflash_loader.py index 9a4fb87..362d628 100644 --- a/libs/base/bflb_base_eflash_loader.py +++ b/libs/base/bflb_base_eflash_loader.py @@ -205,7 +205,7 @@ class BaseEflashLoader(object): self.cfg = BFConfigParser() self.cfg.read(self.config_file) else: - printf('Config file not found') + printf('Config file "' + self.config_file + '" not found') self.error_code_print('000B') return (False, 0) if self.interface == 'openocd':