Last updated:
0 purchases
rotation log
Features #
logger support rotation day or lines.
Usage #
import 'package:rotation_log/rotation_log.dart';
final term = RotationLogTerm.term(RotationLogTermEnum.daily);
final logger = RotationLogger(term);
Future main() async {
WidgetsFlutterBinding.ensureInitialized();
await logger.init();
runZonedGuarded(() async {
runApp(const MyApp());
}, (error, trace) {
logger.exception(error, trace);
});
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.