google / quiver-log

Logging utility for Dart
Apache License 2.0
24 stars 14 forks source link

Const loggers and log closures #1

Open jtmcdole opened 10 years ago

jtmcdole commented 10 years ago

Enhancement requests: 1) Support const loggers. These are loggers that can have their methods code stripped. 2) Support logging closures to remove unnecessary/expensive string interpolation when the log statement wont actually execute: log.noise(() => "$foo$bar$baz"); <- string is never interpolated if log's current level > noise.