Danyel
Results
2
comments of
Danyel
I think this issue can be closed, `exportLogs` does return a `Future`
``` static String convertLogsToString(List logs) { String logsString = 'TIMESTAMP|LEVEL|TYPE|CLASS|METHOD|MESSAGE|EXCEPTION|STACKTRACE|\n' '______________________________________________________________\n'; logs.forEach((log) { // Formatter.format(log, FLogConfig) could be used to format logs automatically logsString += log.timestamp.toString() + '|'; logsString +=...