From b21f8e56992d88c5242515e94d3a6616078a6bdf Mon Sep 17 00:00:00 2001 From: Patrick Daly <pdaly@codeaurora.org> Date: Wed, 2 Nov 2016 15:29:21 -0700 Subject: [PATCH] lrdp-v2: Update informational message The debug image table may contain entries which do not have associated ramdump parsers. Some of these entries may be for data which linux is not interested in. Ensure that the message printed in this scenario looks less like an error to prevent future confusion Change-Id: Id386b6c3ecf4710fa6fe1c2ee3c6a3034b430a76 --- linux-ramdump-parser-v2/debug_image_v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-ramdump-parser-v2/debug_image_v2.py b/linux-ramdump-parser-v2/debug_image_v2.py index 92af313..429adef 100755 --- a/linux-ramdump-parser-v2/debug_image_v2.py +++ b/linux-ramdump-parser-v2/debug_image_v2.py @@ -437,7 +437,7 @@ class DebugImage_v2(): client_name = self.dump_data_id_lookup_table[client_id] if client_name not in client_table: print_out_str( - '!!! {0} Does not have an associated function. The parser needs to be updated!'.format(client_name)) + '!!! {0} Does not have an associated function. Skipping!'.format(client_name)) continue results.append((client_name, client_table[client_name], client_entry)) -- GitLab