Disable all logging, only report when an error or failure occurs

Hi,

How can I disable all text output or logging to the screen in UVVM?
I tried disable_log_msg(ALL_MESSAGES);
But then still the ID_BFM messages come printed.

Is it possible to disable all logging?
And I assume that only errors or failures will be printed.
Is my assumption right?

Rgds,
Eric
Only

Hi Eric,

I would assume from what you are saying that you are using UVVM verification components. They have their own individual verbosity control, so you need to use e.g. disable_log_msg(SBI_VVCT,1, ALL_MESSAGES);
Please let me know if this was the case and whether it helped?

Regards
Espen

Hi Espen,

Yes I’m using UVVM VVC’s.

And yes this solves it.

Rgds,

Eric