tiny_logger_base 0.0.2
tiny_logger_base: ^0.0.2 copied to clipboard
A tiny logger tool to print different levels of log entries saving them in a buffer.
import 'package:tiny_logger_base/tiny_logger_base.dart';
void main(List<String> args) {
log.debug('This is a debug message.');
log.warn('This is a warning message.');
log.error('This is an error message. This will print the stacktrace:');
}