GeoEco.Logging.Logger.Warning
- classmethod Logger.Warning(format, *args)
Reports a warning 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.
Warning messages describe important events that should be brought to the user’s attention but do not necessarily indicate that processing will fail. To draw the user’s attention, ArcGIS highlights warning messages in green in its user interface.
Note
Do not call this method to report exceptions caught inside methods of GeoEco classes. Call
LogExceptionAsWarning()instead.- Parameters:
format (
str) – A printf-style format string. Minimum length꞉ 1.args (
tupleofobject) – Values to merge into the format string.