warning method

On this page

warning

Writes a warning message to the console.

Warning log messages provide information about unexpected and recoverable events in application flow.

def warning(self, message):
    ...
Parameter Type Description
message str The warning message.
Raises Description
ValueError Raised when message is None.

See Also

On this page