warning method

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 System.String The warning message.

Exceptions

Exception Description
ArgumentNullException Thrown when message is null.

See Also