simc / logger

Small, easy to use and extensible logger which prints beautiful logs.
https://pub.dev/packages/logger
MIT License
1.07k stars 129 forks source link

Is there anyway for sharing the logs of the app to some file, like .txt? #124

Closed PauloRutkoski closed 2 years ago

qoob23 commented 2 years ago

Hi! You can extend LogOutput class to create a file-based implementation. Indeed there is one, but it is not exported from logger by default. You can import it manually using

import 'package:logger/src/outputs/file_output.dart';
PauloRutkoski commented 2 years ago

Ok, I'll see it. Thanks!