log_er 2.0.3 copy "log_er: ^2.0.3" to clipboard
log_er: ^2.0.3 copied to clipboard

log_er - Powerful & Colorful Logging for Flutter and Dart. Advanced structured logging package with rich formatting, stack traces, and debugging support.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:log_er/log_er.dart';
import 'screens/home_screen.dart';
import 'utils/log_setup.dart';

void main() {
  setupLogging(); // Configuring log settings before app starts
  Log.info("Application is launching...", fileName: "main.dart");
  runApp(const MyApp());
}

/// **Flutter Application Main Widget**
class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    Log.debug("Building main widget...", fileName: "main.dart");

    return MaterialApp(
      title: 'Log_er Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const HomeScreen(),
    );
  }
}
1
likes
160
points
32
downloads

Publisher

verified publisherpharraxsoftware.com

Weekly Downloads

log_er - Powerful & Colorful Logging for Flutter and Dart. Advanced structured logging package with rich formatting, stack traces, and debugging support.

Repository (GitHub)
View/report issues

Topics

#logging #debugging #monitoring

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

characters

More

Packages that depend on log_er