Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change some docs #2

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading