Keep logs of only the last 5 days

This commit is contained in:
Vishnu Mohandas 2020-11-30 16:03:22 +05:30
parent 5b45041ed2
commit 56bc23c109

View file

@ -19,6 +19,7 @@ void main() async {
WidgetsFlutterBinding.ensureInitialized();
SuperLogging.logDirPath = (await getTemporaryDirectory()).path + "/logs";
SuperLogging.enableInDebugMode = true;
SuperLogging.maxLogFiles = 5;
await SuperLogging.main(_main);
}