Package for create local log flutter applications
Features
LoggerLocal.write Write the log local file LoggerLoca.cleanOldLogs Clean OLD log files
Getting started
add to pubspec.yaml: flutter_log_local: 0.0.1
Usage
import 'package:flutter_log_local/flutter_log_local.dart';
LocalLogger.write(text,
isError: isError,
sufix: sufix,
writeOnlyAppend: writeOnlyAppend,
logMBToRotate: ConfigController.to.logMBToRotate);
LocalLogger.cleanOldLogs(
'chamaCliente',
keepLogDays: ConfigController.to.keepLogDays,
);
Additional information
Bonjour