Harm Aarts

Results 73 comments of Harm Aarts

The vscode terminal does not support ANSI escape sequences. So I don't expect colors to work on the terminal there. The only thing I would expect to see it some...

You are talking about log rotation? Personally I would let a separate piece of software do that for me like [logrotate](https://linux.die.net/man/8/logrotate). But I guess you could write a custom `LogOutput`...

What printer are you using? It is simple to write your own printer. Have a look here: https://github.com/leisim/logger/blob/master/lib/src/printers/prefix_printer.dart

I see merit in your suggestion. Please submit a PR and I'll review it.

I like that the IDEs (Android Studio too) has support for this. Especially since colouring of console output in the IDEs doesn't work. This goes on my todo list.

The `_active` field is indeed private. But I am not sure when this exception is called. You call in your code `close` somewhere and a bit further down you call...

Ah. I think I know what you mean. This is actually something I consider adding. In essence I want to name a logger. But I'm not sure that is on...

Please see https://github.com/leisim/logger/issues/68#issuecomment-786637080 I think it helps if you think about this in terms of different loggers for different (sub)systems. You basically flip it around. Not one logger with multiple...