react-native-file-logger
react-native-file-logger copied to clipboard
A simple file-logger for React Native with configurable rolling policy, based on CocoaLumberjack on iOS and Logback on Android.
Instead of rolling the log files 24hrs after they are created, I was wondering if we could have the option to cause rollover to happen at midnight. This would make...
i tested on android device is normal, but on ios device I get this error. RN: 0.71.5 TypeError: Cannot read property 'sendLogFilesByEmail' of null
Fix #67 > React Native 0.73 will depend on Android Gradle Plugin (AGP) 8.x. This will require all the libraries to specify a namespace in their build.gradle file. We added...
This adds support for configuring the logger via a native Android. While it is already possible to get the logger and log from native as explained in https://github.com/BeTomorrow/react-native-file-logger/issues/38#issuecomment-1130002280, the logs...
When setting a custom logDirectory, such as /storage/emulated/0/Download/logs/, the library successfully writes logs to the specified directory. However, if the app is uninstalled and then reinstalled, the library fails to...
https://github.com/BeTomorrow/react-native-file-logger/blob/1ba13d033391df108a79e40662dfd41321b4da3d/README.md?plain=1#L59
In the README it says that setting `maximumFileSize` to `0` should disable the file size limit, meaning a single file can grow without restriction. But in practice, what happens is...