simple_logging 1.0.0 simple_logging: ^1.0.0 copied to clipboard
simple logging package, with log level / level prefix / logging call position info features.
Using smallest code, simplest APIs, least dependency to logging. the only dependency is flutter that is for checking the platform(web or not)
Features #
- logging level
- logging level prefix
- print caller info
Usage #
import 'package:simple_logging/simple_logging.dart';
final _log = Logger('TEST_PREFIX', level: LogLevel.debug);
void main() {
_log.debug('test debug log message');
}