LogError

Adds a message to the logger in the Error category.

🔁 Function

void LogError(message: string);

⚙️ Parameters

Name Type Description
message String The string value that is to be written to the logger

↩️ Return Value

None

📝 Examples

LogError("This is an error log.");
LogError(`The value is incorrect: ${i}`);