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