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

Any plans on supporting flutter desktop?

Hi, how would I check if logs are existing? I see the export file and i see a txt file deleted in `/private/var/mobile/Containers/Data/Application/30869F15-796E-48E5-AD36-7BXXX0BE8D3/Library/Application%20Support/Logs/Log-2022-01.txt` on iOS when I call `FlutterLogs.clearLogs();` What...

Hey, I just wanted to let you know that it seems like your example doesn't work anymore with iOS 14.5.1 When I want to export my logs to a file...

hi i got an "Exception has occurred. _CastError (Null check operator used on a null value)" on init method copied from documentation

logFilesLimit means max number of log files. i can not find anywhere you use logFilesLimit, so it's not written yet?

I'm getting the following error when trying to build the debug version: Execution failed for task ':app:mergeDebugAssets'. > Could not resolve all files for configuration ':app:debugRuntimeClasspath'. > Could not resolve...

f_logs has some widget to render the log in the application interface similar to linux tail -f tool I'm developing a server backup tool with desktop flutter, where I copy...

I use iPhone . if I use logInfo method , it will save duplicate data. like this: 2021-09-02 13:45:13.696 +0800: {MyLogFile} {This is a log message: 1630561513694, it will be...

i am test on IOS 14.3 ``` init await FlutterLogs.initLogs( logLevelsEnabled: [ LogLevel.INFO, LogLevel.WARNING, LogLevel.ERROR, LogLevel.SEVERE ], timeStampFormat: TimeStampFormat.TIME_FORMAT_READABLE, directoryStructure: DirectoryStructure.FOR_DATE, logTypesEnabled: ["device", "network", "errors"], logFileExtension: LogFileExtension.LOG, logsWriteDirectoryName: "workspaceLogs", logsExportDirectoryName:...

``` var now = new DateTime.now(); var formatter = new DateFormat('yyyy_MM_dd'); String formattedDate = formatter.format(now); String logName = formattedDate + '_workspacelog'; print(logName); FlutterLogs.logToFile( logFileName: logName, overwrite: true, //If set 'true'...