Skip to content

hacker-cb/dart-loggable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Loggable

Package provide simple Loggable mixin to avoid typing class name for each class.

pub package

Usage

Without Loggable:

import 'package:logging/logging.dart';

class MyClass{
  final Logger log = Logger("MyClass");
}

With Loggable:

import 'package:loggable/loggable.dart';

class MyClass extends Object with Loggable {
}

Features and bugs

  • There is no support for logging from the static methods. Still need to creating Logger instance by hands.

Please file feature requests and bugs at the issue tracker.

About

Dart loggable mixin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages