flutter_logs icon indicating copy to clipboard operation
flutter_logs copied to clipboard

An extensive logging framework developed for flutter apps.

Results 40 flutter_logs issues
Sort by recently updated
recently updated
newest added

Lets say we want to keep log files in last 30 days, does the logger supports to automatically delete log files that beyond the time range?

How I initialize: ``` FlutterLogs.setDebugLevel(0); final List logLevels = logLevelThreshold == logLevelNone ? [] : [LogLevel.INFO, LogLevel.WARNING, LogLevel.ERROR, LogLevel.SEVERE]; await FlutterLogs.initLogs( logLevelsEnabled: logLevels, timeStampFormat: TimeStampFormat.TIME_FORMAT_READABLE, directoryStructure: DirectoryStructure.FOR_DATE, logTypesEnabled: ["device", "network",...

``` D/AlarmPingSender( 4975): Register alarmreceiver to MqttServiceMqttService.pingSender.paho134687483713410 E/AndroidRuntime( 4975): FATAL EXCEPTION: MQTT Rec: paho134687483713410 E/AndroidRuntime( 4975): Process: kontur.io.live_sensors, PID: 4975 E/AndroidRuntime( 4975): java.lang.IllegalArgumentException: kontur.io.live_sensors: Targeting S+ (version 31 and above)...

We are getting this error while exporting logs for android devices. This is happening if the device is kept still for some time . We are able to reproduce this...

How to use encryptionKey? Can you provide a sample code for the same with decryption steps?

Hello, I wonder how use correctly this log library enabling encryption. After saving encrypted logs, I export the zip file without decrypt and send it to my PC. How can...

Flutter_logs generates log files day-wise on Android devices but on iOS it generates log files month-wise. For that log file size will be huge(250MB-300MB) which is too much for users....

Options passed to `initLogs()` aren't documented anywhere as far as I can tell. If they are, the docs are really well hidden and should be linked to in the project...

compiling for iOS 9.0, but module 'ZIPFoundation' has a minimum deployment target of iOS 12.0: /Users/macsystem/Library/Developer/Xcode/DerivedData/Runner-dbdcnkggaxlqmdboaajglvasxgse/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/ZIPFoundation/ZIPFoundation.framework/Modules/ZIPFoundation.swiftmodule/arm64-apple-ios.swiftmodule

``` build/ios/Debug-iphonesimulator/flutter_logs/flutter_logs.framework/Modules/module.modulemap:8:11 Semantic Issue (Xcode): Use of undeclared identifier 'FlutterLogsPlugin' /Users/josephjohnson/DEV/NovviaProjects/pickup-director/ios/Runner/GeneratedPluginRegistrant.m:37:3 Could not build the application for the simulator. Error launching application on iPhone 12. ``` I see this code...