Skip to content

Commit

Permalink
chore: Fix log message output to not have ".message" on end
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Nov 17, 2023
1 parent cac010c commit 55436b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/logging.dart
Expand Up @@ -74,7 +74,7 @@ class FileOutput extends LoggyPrinter {
@override
void onLog(LogRecord record) async {
var logString =
"${DateTime.now().difference(_appStartTime).inMilliseconds / 1000.0} : [${record.level.toString().substring(0, 1)}] : $record.message";
"${DateTime.now().difference(_appStartTime).inMilliseconds / 1000.0} : [${record.level.toString().substring(0, 1)}] : ${record.message}";
_sink?.writeln(logString);
}
}
Expand Down

0 comments on commit 55436b2

Please sign in to comment.