Some readme changes

This commit is contained in:
p.belezov 2024-03-06 15:52:55 +08:00
parent d6f1f3d859
commit 2959fe6dab

View File

@ -31,10 +31,10 @@ Next you can use logger. Logger accepts 4 parameters:
- String context - a property added for convenience that allows you to manually indicate where a log line was called from;
- String text - log text;
- boolean addTime - should logger add current time to log line
- boolean addIndent - should logger add indent (22 spaces) to log line
- boolean addTime - should logger add current time to log line;
- boolean addIndent - should logger add indent (22 spaces) to log line;
Example:
Examples:
```
logger.log("Some context", "Some text", false false);