Impact of uvm verbosity

Verbosity is used to filter the messages.

In your case, in the command line, the verbosity is set as UVM MEDIUM. With this verbosity, all the info statements with verbosity greater than UVM MEDIUM(UVM_DEBUG, UVM_FULL, UVM_HIGH) will be filtered out & the info statements with the verbosity equal to & less than UVM _MEDIUM (UVM_LOW & UVM_NONE)will be displayed on the terminal. In sequence for the info statement as verbosity is UVM_LOW that statement will be displayed. Apart from that, there won’t be any impact on the execution of the sequence task body

Regards,
Shanthi