glog 1.3.0 glog: ^1.3.0 copied to clipboard
An implementation of glog in dart with some extra bells and whistles.
glog #
glog is a dart implementation of the google's glog format.
Getting started #
Add the dependency:
$ dart pub add glog
Usage #
// initialize the logger at the module's boundary:
import 'package:glog/glog.dart';
const logger = GlogContext('ui');
// then use it later
logger.info('Hello, world!');