toStringWOTimeStamp method

String toStringWOTimeStamp()

Returns a string representation of the log message without timestamp.

Useful for compact logging scenarios.

Implementation

String toStringWOTimeStamp() {
  return '[${level.name}] ($category) $environment --> $message ';
}