easy_dash_logger 1.0.0 copy "easy_dash_logger: ^1.0.0" to clipboard
easy_dash_logger: ^1.0.0 copied to clipboard

A versatile logging package for Dart and Flutter applications.

example/main.dart

import 'package:easy_dash_logger/easy_dash_logger.dart';

void main() {
  // Log different levels of messages
  'This is a debug message'.printLog(name: 'CUSTOM_LOG', color: ANSICOLOR.green);
  'This is an info message'.printLog(name: 'CUSTOM_LOG', color: ANSICOLOR.blue);
  'This is a warning message'.printLog(name: 'CUSTOM_LOG', color: ANSICOLOR.yellow);
  'This is an error message'.printLog(name: 'CUSTOM_LOG', color: ANSICOLOR.red);

  // Log a message with additional context

  // Example usage of the ColoredLog extension
  'This is a colored log message'.printLog(
    name: 'CUSTOM_LOG',
    color: ANSICOLOR.green,
    bgColor: ANSICOLOR.white,
  );
}
2
likes
0
points
53
downloads

Publisher

verified publishermreslam.net

Weekly Downloads

A versatile logging package for Dart and Flutter applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on easy_dash_logger