Skip to content

Commit

Permalink
fix: change some docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nesquikm committed Jan 31, 2024
1 parent 7ba05b0 commit 47056d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions lib/src/abstract_logger.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ abstract class AbstractLogger {
/// Init logger
Future<void> init(Map<Level, int> retainStrategy) async {}

/// Start a new session
/// It can return string with session id
/// Start a new session, it can return string with session id
Future<String?> sessionStart() async {
return null;
}
Expand Down
1 change: 1 addition & 0 deletions lib/src/the_logger.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class TheLogger {
bool _initialized = false;

/// Init app logger
///
/// [retainStrategy] processing algorythm:
/// * sort all records by level (ALL->OFF)
/// * record with minimum level will be used as global filter
Expand Down

0 comments on commit 47056d2

Please sign in to comment.