elog-gen.py: Remove missing metadata print
It's fairly common now for errors defined in the errors.yaml files to
not have a corresponding entry in their metadata.yaml file, so this
commit removes the print statement complaining about that case because
it can mislead people into thinking there is a real problem.
The intent of the original design was to at least define the error level
(i.e. severity) in the metadata file, though since the script already
defaults that to 'ERR' it isn't really necessary.
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: Iec7ece2382becc101fff6a03f38a3607fa2e43af
diff --git a/tools/elog-gen.py b/tools/elog-gen.py
index ede916a..dd4e04e 100755
--- a/tools/elog-gen.py
+++ b/tools/elog-gen.py
@@ -226,8 +226,6 @@
break
if match is None:
- print("Error - Did not find error named %s in %s" % (
- error['name'], i_elog_meta_yaml))
continue
error_lvl[fullname] = match.get('level', 'ERR')