Function
Show a pretty information log message with optional date information
Information message to display
Include or not a timestamp
prettyInfo("Server is running on port 3000");// Output: ℹ - Server is running on port 3000 (in blue)prettyInfo("Cache cleared", true);// Output: ℹ [30/03/2026 10:30:45] - Cache cleared (in blue with timestamp) Copy
prettyInfo("Server is running on port 3000");// Output: ℹ - Server is running on port 3000 (in blue)prettyInfo("Cache cleared", true);// Output: ℹ [30/03/2026 10:30:45] - Cache cleared (in blue with timestamp)
Show a pretty information log message with optional date information