I encountered an issue when setting verbosity for an object in component. I want to set the verbosity of specific components (uvm_test_top.env.subenv_a) to UVM_HIGH, command line argument is as below:
1.+UVM_VERBOSITY=UVM_LOW
2.+uvm_set_verbosity=*subenv_a*,_ALL_,UVM_HIGH,build,0
The object (object_a) will do some configurations in build phase of component: subenv_a.
I didn't saw the UVM_HIGH info in object_a is printed and the UVM_HIGH info for all the components in component subenv_a will be printed.
Seems that command "+uvm_set_verbosity" just take effect on component,but not object in component.
So what should i do to print UVM_HIGH info for an object in component.
Thanks Ken