dart_logz 1.0.4 copy "dart_logz: ^1.0.4" to clipboard
dart_logz: ^1.0.4 copied to clipboard

A stupid simple logging package for Dart with colorful output.

example/dart_logz_example.dart

import 'package:dart_logz/dart_logz.dart';

void main() {
  final Logz logz = Logz();

  LogzConfig.debugMode = true;

  logz.i('This is an info message.');
  logz.s('This is a success message.');
  logz.w('This is a warning message.');
  logz.e('This is an error message.');
  logz.d('This is a debug message.');
  logz.f(
    'This is a fatal message.',
    Exception('Fatal error'),
    StackTrace.current,
  );
}
1
likes
160
points
166
downloads
screenshot

Documentation

API reference

Publisher

verified publishermj12358.dev

Weekly Downloads

A stupid simple logging package for Dart with colorful output.

Repository (GitHub)
View/report issues

Topics

#cli #console #dart #debugging #logging

Funding

Consider supporting this project:

www.buymeacoffee.com

License

BSD-3-Clause (license)

More

Packages that depend on dart_logz