utils/log library

Enums

LogColor
Enum representing different log colors.

Functions

colorize(String value, LogColor color) String
Colorizes the given value with the specified color.
devPrint(Object? object, {int limit = 800}) → void
Custom print function for development use only. Uses assert to ensure the print statement only executes in debug mode. In release mode, this function does nothing.
logg(dynamic value, {LogColor color = LogColor.yellow, int limit = 500, String? name, bool nolimit = false}) → void
Prints a log message with optional color, length limit, and name.