How to know uvm_config_db#()::set(*,*,*) is execute successful

Hi all,

Are there any way to know that uvm_config_db::set is execute successful?
Since if I adding wrong hierarchy path,simulator did not produce any error/warning, so it is hard to debug.

Thank you in advance!

In reply to SonNguyen:

uvm_config_db set does not check anything. You Can make a set to a hierarchy which does not exist. Only the type of the arguments will be checked. But with print_config you can print the settings for a component.

In reply to SonNguyen:
https://verificationacademy.com/cookbook/debugging/builtindebug

Thank you Chr_Sue, Dave for reply.
Your answer were helpful.