Lines Matching full:error
3 """Condenses the error policy table down to only the fields used by
9 Error: The OpenBMC error.
10 e.g. xyz.openbmc_project.Thermal.Error.PowerSupplyHot
13 Modifier: Used in combination with the error to locate a
16 Message: A short message describing the error.
19 There may be multiple CommonEventID/Modifier/Message groups per Error,
20 which is why both the error and modifier are needed to find an entry.
36 "err":"xyz.openbmc_project.Thermal.Error.PowerSupplyHot"
44 def add_details(error, details, condensed): argument
45 """Adds a details entry to an error"""
49 if errors["err"] == error:
56 group["err"] = error
63 parser = argparse.ArgumentParser(description="Error log policy condenser")
99 # Parse the error||modifer line. The modifier is optional.
102 error = name[0:separatorPos] variable
106 error = name
110 if " " in error:
111 print("Skipping error %s because of spaces" % error)
117 add_details(error, details, condensed)