Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix typo in FileLogger examples and expand description
  • Loading branch information
saschpe authored Jan 31, 2025
1 parent 1e30783 commit 020f981
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

Lightweight logging library for Kotlin/Multiplatform. Supports Android, iOS, JavaScript and plain JVM environments.

- **log4k**: Base library, provides infrastructure and console logging
- **log4k**: Base library, provides infrastructure and logging to the console or files with configurable rotation and retention policies.
- **log4k-slf4j**: Integration with [SLF4J](https://www.slf4j.org)

## Download
Expand Down Expand Up @@ -114,7 +114,7 @@ Log.loggers += FileLogger(rotate = Rotate.After(lines = 1000), logPath = "myLogP
// Log with sensible defaults (daily, keep 10 files)
Log.loggers += FileLogger()

// On huge eternal log file:
// One huge eternal log file:
Log.loggers += FileLogger(rotate = Rotate.Never, limit = Limit.Not)
```

Expand Down

0 comments on commit 020f981

Please sign in to comment.