How can I get the current verbosity from within a module?
I am trying to do something like this but the module can't find the function that returns the verbosity level.
initial begin
int prev_level;
prev_level = get_report_verbosity_level();
case (prev_level)
default: ;
endcase
end