Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/farcaller/dart-glog

glog implementation for dart
https://github.com/farcaller/dart-glog

dart glog

Last synced: 4 days ago
JSON representation

glog implementation for dart

Awesome Lists containing this project

README

        

# glog

glog is a dart implementation of the google's
[glog](https://github.com/google/glog) format.

## Getting started

Add the dependency:

```
$ dart pub add glog
```

## Usage

```dart
// 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!');
```