We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 202db13 + ba491c5 commit 245b52dCopy full SHA for 245b52d
src/redfish/messages/messages.py
@@ -136,8 +136,8 @@ def get_error_messages( response ):
136
if "@Message.ExtendedInfo" in messages_detail:
137
for message in messages_detail["@Message.ExtendedInfo"]:
138
if "Message" in message:
139
- out_string = out_string + "\n" + message["Message"]
140
- else:
+ out_string = out_string + "\n" + message["MessageId"] + ": " + message["Message"]
+ else:
141
out_string = out_string + "\n" + message["MessageId"]
142
out_string = out_string + "\n"
143
except:
0 commit comments