Browse Source

Don't block on flushing the log output to disk

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

+ 0 - 1
lib/core/network.dart

@@ -20,7 +20,6 @@ class Network {
           SuperLogging.logFile.writeAsString(
             object.toString() + "\n",
             encoding: Utf8Codec(allowMalformed: true),
-            flush: true,
             mode: FileMode.append,
           );
         }));