add_info_message#

AedtLogger.add_info_message(message_text, level=None)[source]#

Add a type 0 “Info” message to the active design level of the message manager tree.

Also add an info message to the logger if the handler is present.

Parameters:
message_textstr

Text to display as the info message.

levelstr, optional

Level to add the info message to. Options are "Global", "Project", and "Design". The default is None, in which case the info message gets added to the "Design" level.

Examples

Add an info message at the global level.

>>> hfss.logger.info("Global warning message", "Global")