Debug.notice

Function/Meaning

Output important messages to the console

Type
Debugclassmethod of
Syntax
notice(message)
Arguments
message

Specify the message to be output.

Return value
None (void)
Explanation

Outputs a message to the console.
Unlike Debug.message, the message output here is always written to the log file even if you start writing to his log file in the middle (the message output by Debug.message can only be traced back to some extent. Will not be written).
It is used to output important information that will be useful when collecting log files.