In reply to Huzefa Halolwala:
Huzefa,
Your question is not clear, if you want to convert the UVM_ERROR to UVM_INFO you can use
set_report_severity_id_override task. If you want to print error you need to change UVM_EXIT in your code to UVM_DISPLAY.
- set_report_severity_id_action(UVM_ERROR, "ERROR", UVM_EXIT);
+ set_report_severity_id_action(UVM_ERROR, "ERROR", UVM_DISPLAY);
Thanks