LogWarning

Adds a message to the logger in the Warning category.

🔁 Function

void LogWarning(message: string);

⚙️ Parameters

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

↩️ Return Value

None

📝 Examples

LogWarning("This is a warning log.");
LogWarning(`The value is incorrect: ${i}`);