Browse Source

Don't block on writing logs

Vishnu Mohandas 4 years ago
parent
commit
4a988e3361
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/core/network.dart

+ 1 - 1
lib/core/network.dart

@@ -17,7 +17,7 @@ class Network {
         responseBody: true,
         logPrint: (object) {
           log(object);
-          SuperLogging.logFile.writeAsStringSync(
+          SuperLogging.logFile.writeAsString(
             object.toString() + "\n",
             encoding: Utf8Codec(allowMalformed: true),
             flush: true,