warning method

warning

Writes warning message to the console; Warning log messages provide information about the unexpected and recoverable event in application flow.

def warning(self, message):
    ...
Parameter Type Description
message str The warning message.

Exceptions

Exception Description
ArgumentNullException Thrown when message is null.

See Also