df_log 0.1.0 copy "df_log: ^0.1.0" to clipboard
df_log: ^0.1.0 copied to clipboard

A package that provides logging utilities for better debugging.

example/example.dart

//.title
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
//
// Dart/Flutter (DF) Packages by DevCetra.com & contributors. See MIT LICENSE
// file in the root directory.
//
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
//.title~

import 'package:df_log/df_log.dart';

// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

void main() {
  Here().debugLog('This is a log!'); // prints: "⚪️ [main] This is a log!"
  Here().debugLogError(
      'This is an error log!',); // prints: "🔴 [main] This is an error log!"
  Here().debugLogAlert(
      'This is an alert log!',); // prints: "🟠 [main] This is an alert log!"
  Here().debugLogIgnore(
      'This is an ignore log!',); // prints: "🟡 [main] This is an ignore log!"
  Here().debugLogInfo(
      'This is an info log!',); // prints: "🟣 [main] This is an info log!"
  Here().debugLogStart(
      'This is a start log!',); // prints: "🔵 [main] This is a start log!"
  Here().debugLogStop(
      'This is a stop log!',); // prints: "⚫ [main] This is a stop log!"
  Here().debugLogSuccess(
      'This is a success log!',); // prints: "🟢 [main] This is a success log!"

  printRed(someFunction()); // prints: "someFunction" in red
  printGreen(anotherFunction()); // prints: "34"
  printLightPurple('You can also print in other colord!');
}

String? someFunction() {
  return Here().scope;
}

int? anotherFunction() {
  return Here().lineNumber; // line 34
}
2
likes
0
pub points
63%
popularity

Publisher

verified publisherdevcetra.com

A package that provides logging utilities for better debugging.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

path

More

Packages that depend on df_log