Chromium Code Reviews| Index: pkg/logging/lib/logging.dart |
| =================================================================== |
| --- pkg/logging/lib/logging.dart (revision 28316) |
| +++ pkg/logging/lib/logging.dart (working copy) |
| @@ -310,4 +310,6 @@ |
| LogRecord(this.level, this.message, this.loggerName, [this.exception]) |
| : time = new DateTime.now(), |
| sequenceNumber = LogRecord._nextNumber++; |
| + |
| + String toString() => '[${level.name}] $loggerName: $message'; |
| } |