logger4flutter 0.0.3 copy "logger4flutter: ^0.0.3" to clipboard
logger4flutter: ^0.0.3 copied to clipboard

A logger library for better beautiful console log, can be saved to local file and upload server.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:logger4flutter/logger4flutter.dart';

void main() {
  FLogger.updateConfig(
    printLevel: LoggerLevel.debug,
    fileLevel: LoggerLevel.warn,
  );
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    FLogger.debug('log is run');
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      FLogger.info("setState is run");
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    FLogger.warn("build is run");
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text('You have pushed the button this many times:'),
            Text('$_counter', style: Theme.of(context).textTheme.display1),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A logger library for better beautiful console log, can be saved to local file and upload server.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

ansicolor, flutter, path_provider, stack_trace

More

Packages that depend on logger4flutter