toStringWOTimeStamp method
Returns a string representation of the log message without timestamp.
Useful for compact logging scenarios.
Implementation
String toStringWOTimeStamp() {
return '[${level.name}] ($category) $environment --> $message ';
}
Returns a string representation of the log message without timestamp.
Useful for compact logging scenarios.
String toStringWOTimeStamp() {
return '[${level.name}] ($category) $environment --> $message ';
}