deltakit.explorer.Logging.info#
- static Logging.info(message: str, uid: str)#
This method is used to log events during the API method invocation. This method should be used after info_and_generate_uid(), and requires a uid as an argument:
uid = Logging.info_and_generate_uid(locals()) ... Logging.info("Your message", uid)- Parameters:
message (str) – message
uid (str) – unique string, result of info_and_generate_uid()