-
Notifications
You must be signed in to change notification settings - Fork 0
All the Functions
YusufSuleman edited this page Aug 2, 2021
·
1 revision
error(char message);
Logs an error with a text Message.
info(char message);
Logs an information log with a text Message.
warning(char message);
Logs a warning with a text Message.
errorMultiline(char message);
To log errors with multiple lines. Needs to be used with error();
infoMultiline(char message);
To log information logs with multiple lines. Needs to be used with info();
warning(char message);
To log warnings with multiple lines. Needs to be used with warning();