loggerx2 1.0.1
loggerx2: ^1.0.1 copied to clipboard
Colorful, neat and intuitive logger library, for creating a simple log messages with many urgency levels.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add loggerx2
copied to clipboard
With Flutter:
$ flutter pub add loggerx2
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
loggerx2: ^1.0.1
copied to clipboard
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:loggerx2/extensions/extensions_file.dart';
import 'package:loggerx2/loggerx.dart';
import 'package:loggerx2/models/log_level.dart';
copied to clipboard