resultex_logger 1.1.1
resultex_logger: ^1.1.1 copied to clipboard
A lightweight, high-performance, and colorized logging system for Flutter and Dart built on top of native developer.log
import 'package:flutter/foundation.dart';
import 'package:resultex_logger/src/logger_base.dart';
void main() async {
// Example initializing implementation
final loggerBase = ResultexLoggerBase();
await loggerBase.init();
if (kDebugMode) {
print('Resultex Logger Example running...');
}
}