Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoboss committed Mar 20, 2024
1 parent 33b652c commit cfda3d9
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions example/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ Future<void> main() async {
},
);

await logger.log(SeqLogLevel.information, 'test, logged at: {Timestamp}', null, {
'Timestamp': DateTime.now().toUtc().toIso8601String(),
});
await logger.log(
SeqLogLevel.information,
'test, logged at: {Timestamp}',
null,
{
'Timestamp': DateTime.now().toUtc().toIso8601String(),
},
);

await logger.flush();
}

0 comments on commit cfda3d9

Please sign in to comment.