simple_file_log 0.0.5 copy "simple_file_log: ^0.0.5" to clipboard
simple_file_log: ^0.0.5 copied to clipboard

outdated

A log util with file.

example/lib/main.dart

import 'package:simple_file_log/simple_file_log.dart';

void main() async {
  (await MyLogDart.log.init(debug: true)).info('app start...');

  final myClassA = MyClassA();
  myClassA.testLog();

  MyLogDart.log.dispose();

  myClassA.testLog();

  (await MyLogDart.log.init(debug: true)).info('app start2...');

  myClassA.testLog();
}

class MyClassA with LogUtil {
  void testLog() {
    logger.fine('testLog');
  }
}
0
likes
0
points
64
downloads

Publisher

unverified uploader

Weekly Downloads

A log util with file.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

intl, logging, path

More

Packages that depend on simple_file_log