How to suppress a print message based on specific string?

I wanted to suppress UVM_WARNING messages with a specific string/pattern from getting printed in the log file. I could find only ID based filtering but not based on specific string in the message. Can anyone help me out?

message example:
UVM_WARNING …/sv/src/reg/uvm_reg_field.svh(1716) @ 981533.00 ns: reporter [RegModel] Individual field access not available for field ‘reg_map.my_reg_blk.my_reg.my_field’. Accessing complete register instead.

Thanks in advance

In reply to ManjunathBhat:

There is no mechanism in the UVM to define an action on the 2nd argument in your uvm_info/uvm_warning. But you could add the content of the 2nd argumentt as the first argument. There is no limitation and you have to code this in any way. [RegModel] does not come out of the environment automatically. You have specified this.