Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/hyiso/verbose
- Owner: hyiso
- License: apache-2.0
- Created: 2023-03-24T07:55:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-15T14:12:29.000Z (about 1 year ago)
- Last Synced: 2023-09-16T06:58:50.288Z (about 1 year ago)
- Language: Dart
- Homepage: https://pub.dev/packages/verbose
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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`