Function
Show a pretty warn log message with optional date information
Warning message to display
Include or not a timestamp
prettyWarn("Deprecated function used");// Output: ⚠ - Deprecated function used (in orange)prettyWarn("Low memory", true);// Output: ⚠ [30/03/2026 10:30:45] - Low memory (in orange with timestamp) Copy
prettyWarn("Deprecated function used");// Output: ⚠ - Deprecated function used (in orange)prettyWarn("Low memory", true);// Output: ⚠ [30/03/2026 10:30:45] - Low memory (in orange with timestamp)
Show a pretty warn log message with optional date information