GeoEco.Logging.Logger.Debug
- classmethod Logger.Debug(format, *args)
Reports a debugging 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.
Debugging messages describe processing details that are usually not interesting unless the user is diagnosing a problem. The default configuration of the logging system causes debugging messages to be discarded.
- Parameters:
format (
str) – A printf-style format string. Minimum length꞉ 1.args (
tupleofobject) – Values to merge into the format string.