GeoEco.Logging.Logger.Info

classmethod Logger.Info(format, *args)

Reports an informational message to the user.

Like the C printf function or the Python % operator, this method generates a message string by merging in the optional arguments into the format string.

Informational messages describe major processing steps that may be interesting to the user but do not require the user to take any action. For example, a method that performs three major processing tasks might report an informational message after each step is finished. Do not report too many informational messages or you may overwhelm the user. Report processing details as debug messages.

Parameters: