Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hyiso/verbose

A tiny Dart debugging utility package for verbosely logging message.
https://github.com/hyiso/verbose

Last synced: 24 days ago
JSON representation

A tiny Dart debugging utility package for verbosely logging message.

Awesome Lists containing this project

README

        

# verbose

A tiny Dart debugging utility package for verbosely logging message.

## Installation
```bash
dart pub add verbose
```

## Usage

For example, add this code to `lib/main.dart`

```dart
import 'package:verbose/verbose.dart';

void main() {
var verbose = Verbose('exmaple');
verbose('message');
}
```
Then, run `dart lib/main.dart` will see nothing output.

While run `VERBOSE=true dart lib/main.dart` will see `example - message`