toString method
Returns a string representation of the log message with timestamp.
Includes all fields in a concise format.
Implementation
@override
String toString() {
return '${(timeStamp ?? DateTime.now()).toIso8601String()} <$timeLine> [${level.name}] ($category) $environment --> $message ';
}