l 3.0.1 l: ^3.0.1 copied to clipboard
Cross-platform html/io Logger library with simple API. Manipulate with native and web console. Support ascii colorize output.
library l.example.key_features;
import 'package:l/l.dart';
void main() {
l
..v('Regular 1')
..e('Error')
..w('Warning')
..i('Info')
..d('Debug')
..s('Shout')
..vvvvvv('Regular 6');
}