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

outdated

Simple and pretty log package for Dart, includes Flutter and web.

example/lib/example.dart

import 'dart:io';

import 'package:dog/dog.dart';

void main(List<String> args) {
  Dog dog = Dog(
    // formatter: SimpleFormatter(),
    emitter: FileEmitter(file: File('log.txt'), append: false),
  );
  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
pub points
79%
popularity

Publisher

unverified uploader

Simple and pretty log package for Dart, includes Flutter and web.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

ansicolor, stack_trace

More

Packages that depend on dog