https://github.com/farcaller/dart-glog
glog implementation for dart
https://github.com/farcaller/dart-glog
dart glog
Last synced: 4 months ago
JSON representation
glog implementation for dart
- Host: GitHub
- URL: https://github.com/farcaller/dart-glog
- Owner: farcaller
- License: apache-2.0
- Created: 2022-07-06T07:37:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-29T17:08:40.000Z (almost 3 years ago)
- Last Synced: 2025-01-22T17:12:39.529Z (6 months ago)
- Topics: dart, glog
- Language: Dart
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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!');
```