dog 0.2.0 copy "dog: ^0.2.0" to clipboard
dog: ^0.2.0 copied to clipboard

outdated

Simple and pretty log package for Dart.

example/lib/example.dart

import 'package:dog/dog.dart';

void main(List<String> args) {
  Dog dog = Dog();
  dog.v('verbose');
  dog.d('debug');
  dog.i('info');
  dog.w('warning');
  dog.e('error');
  dog.i({
    'a': 1,
    'b': {'b1': '2', 'b2': '2'},
    'c': 3
  });
  dog.w([1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 'a']);

  dog.i({'success': true},
      tag: 'HTTP', title: 'Response: https://api.example.com/');

  try {
    throw Exception('This is an exception.');
  } catch (e, st) {
    dog.e(e, stackTrace: st);
  }

  dog(() => 'This this a message returned by Function.');
}
11
likes
0
points
54
downloads

Publisher

unverified uploader

Weekly Downloads

Simple and pretty log package for Dart.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

ansicolor, stack_trace

More

Packages that depend on dog