UVM_INFO not printing message

Hi,

I am using a uvm_info print message inside a task as shown below. In the log, I can see the message printed by $display but cannot see the one printed by uvm_info. While compilation, I use +UVM_VERBOSITY=UVM_LOW. Please help me resolve this issue. task mc_driver:load_register(mc_transfer trans); bit [31:0] addr; static bit first_time = 1; if (first_time) begin ............. end uvm_info(get_type_name(),$sformatf(“Load Register CMD at %t\n”,$time),UVM_LOW);
$display (“Inside Load Register\n”);

endtask

In reply to savitha_john:

Do you use +UVM_VERBOSITY=UVM_LOW while compilation or simulation ?

I am not sure using it durinf compilation would be of any help…

In reply to Ashith:

Hi Kumar,
I am using +UVM_VERBOSITY switch during simulation. Sorry for the confusion.