Skip to content

Commit

Permalink
Added localLogWriter description to polish version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kacper authored and Kacper committed Aug 22, 2020
1 parent ce01b20 commit 53f83a3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.pl.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,19 @@ Get.config(
)
```

Opcjonalnie możesz przekierować wszystkie logi z Get by używać swojej ulubionej paczki i zbierać w niej logi.

```dart
GetMaterialApp(
enableLog: true,
logWriterCallback: localLogWriter,
);
void localLogWriter(String text, {bool isError = false}) {
// tutaj przekaż wiadomosci do ulubionej paczki
// pamiętaj że nawet jeśli "enableLog: false" logi i tak będą wysłane w tym callbacku
// Musisz sprawdzić konfiguracje flag jeśli chcesz przez GetConfig.isLogEnable
}
## Video tłumaczące inne funkcjonalności GetX
Expand Down

0 comments on commit 53f83a3

Please sign in to comment.