FLUTTER ECOSYSTEM

hyiso/verbose

一个用于详细记录消息的微型 Dart 调试工具包。

详细 项目封面
Stars
0
Forks
0
最近推送(UTC)
2023年9月15日
项目状态
未归档
hyiso GitHub avatar
GITHUB User

hyiso ↗

语言Dart

此仓库发布的插件

使用的依赖

依赖清单 2 项
  • lints开发依赖^2.0.0
  • test开发依赖^1.16.0

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

verbose

A tiny Dart debugging utility package for verbosely logging message.

Installation

dart pub add verbose

Usage

For example, add this code to lib/main.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