Jump to content

disabling uvm_info with set_report_id_action


Recommended Posts

I'm trying to disable the info message that's displayed in the phase jumping.

I'm doing this:

set_report_id_action("PH_JUMP", UVM_NO_ACTION);

to get rid of this message:

# UVM_INFO /home/njohnson/lib/uvm-1.1a/src/base/uvm_phase.svh(1276) @ 986: reporter [PH_JUMP] phase post_shutdown (schedule uvm_sched, domain uvm) is jumping to phase pre_reset

without any luck. I suspect there's something simple I've got wrong but don't know what it is. Can someone straighten me out?

thanks

-neil

Link to comment
Share on other sites

The report ID's are local to a component (for some reason). You could use the hier-version of set_report_id_action(), but if you have look at how that works, you may want to override the report server process_report() instead, to filter out the PH_JUMP report. This can be useful for other things as well, for example to format the reports the way you like, get rid of the hierarchical reporting altogether, etc.

Erling

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...