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

> Task :flutter_logs:compileReleaseKotlin w: /home/csaba/.pub-cache/hosted/pub.dartlang.org/flutter_logs-2.1.7/android/src/main/kotlin/com/flutter/logs/plogs/flutter_logs/FlutterLogsPlugin.kt: (148, 29): Variable 'labels' is never used w: /home/csaba/.pub-cache/hosted/pub.dartlang.org/flutter_logs-2.1.7/android/src/main/kotlin/com/flutter/logs/plogs/flutter_logs/LogsHelper.kt: (64, 68): Type mismatch: inferred type is String? but String was expected I'm using Kotlin version...

Hey, First of all, great work, I found flutter_logs is the best way to log thing in a flutter app. My problem is that I store my app files in...

Future exportAllLogs() async { FlutterLogs.exportLogs(exportType: ExportType.ALL); return _completer.future as FutureOr; } but _completer unable to return value ,

Is there any way to put a line break for every line for better readability? How could I do that?

I checked the available post on the medium but would this be fine await FlutterLogs.initMQTT( topic: "YOUR_TOPIC", brokerUrl: "", //Add URL without schema certificate: "m2mqtt_ca.crt", port: "8883"); Not seems to...

If I happen to name my folders as: logsWriteDirectoryName: "Logs", logsExportDirectoryName: "Logs/Exported", the plugin will get into an infinite loop like `Logs/Exported/Temp/Logs/Exported/Temp/...`

Hello, I am getting following error after flutter update: pub.dartlang.org\flutter_logs-2.1.5\android\src\main\kotlin\com\flutter\logs\plogs\flutter_logs\FlutterLogsPlugin.kt: (43, 32): Type mismatch: inferred type is Activity? but Context was expected Any idea?

Would it be possible to extend the log level enum by two new values? https://github.com/umair13adil/flutter_logs/blob/61390296c7b52421305f886b8d89ea9bd44f206c/lib/flutter_logs.dart#L7 New values: - VERBOSE - DEBUG Then call `FlutterLogs.logDebug(...)` for example This would be nice...

Unable to export logs and Share on android device, its working fine in ios I am using this method Future exportAllLogs() async { FlutterLogs.exportLogs(exportType: ExportType.ALL); return _completer.future as FutureOr; }...

Under FlutterLogs.logError(), FlutterLogs.logErrorTrace() change printDebugMessage(result, 2); to printDebugMessage(result, 1); So that it prints the error logs, in case _debugLevel is set as 1