logger_master 1.0.2 copy "logger_master: ^1.0.2" to clipboard
logger_master: ^1.0.2 copied to clipboard

A lightweight Flutter logging utility with colorful output, tags, and clickable file paths for easier debugging in IDEs.

example/lib/main.dart

import 'package:example/example_model.dart';
import 'package:flutter/material.dart';
import 'package:logger_master/logger_master.dart';

void main() {
  runApp(const MyApp());
  ExampleModel exampleModel = ExampleModel(id: 1, name: "Example");

  // Example usage
  "Hello World".logInfo();
  123.logDebug();
  exampleModel.logWarning();
  exampleModel.name.logError();
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text("Logger Example")),
        body: const Center(child: Text("Check Logcat for logs")),
      ),
    );
  }
}
1
likes
160
points
11
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A lightweight Flutter logging utility with colorful output, tags, and clickable file paths for easier debugging in IDEs.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on logger_master