logger
logger copied to clipboard
Small, easy to use and extensible logger which prints beautiful logs.
Hi all, As per https://github.com/leisim/logger/issues/51#issuecomment-653730601 How can I get Android Studio to find this as Dart Analysis is failing in our Actions. It's obviously to do with https://github.com/leisim/logger/blob/cf216e03d111b524c220db75c5e243fec8c8a081/lib/logger.dart#L21 but I'm...
So, currently I use logger like this way ```dart ///logger.dart file final Logger logger = Logger(printer: PrettyPrinter()); ``` ```dart ///main.dart file void main() { logger.d( 'Run with either `dart example/main.dart`...
2 years later the colors are still not working in intellij..? did someone find a fix for this?
1) on iphone i cant click on the printed log so it opens the location of the log. 2) all logs are blue, even if i do logger.e("")
Trim log if it's length is `> n` lines.
on Android pixel 5a, mac OS
Trying to get rid of the Log.d() line in every log.
E.g. ```dart final logger = Logger(); logger.i(MyMessage("I'm potato", tag: Tag.potato)); class MyMessage { final dynamic message; final Tag? tag; ... } enum Tag {potato, nonPotato} ``` I think this also...