DEV Community

Cover image for I made a pretty logger for flutter
π™Ήπš’πš‹πš›ΔΚΎΔ«πš• ⚑
π™Ήπš’πš‹πš›ΔΚΎΔ«πš• ⚑

Posted on • Updated on

I made a pretty logger for flutter

A flutter package that developers have pretty logs instead just printing everything like a newbie.

Terminal

Features

Makes it easy to log to console without using print in a colorful way, with multiple colors, and it works only in debug mode, makeing it perfect for pros.

Getting started

Installing

Add the following to your pubspec.yaml file:

dependencies:
  pretty_logger: any
Enter fullscreen mode Exit fullscreen mode

Import the package.

import 'package:pretty_logger/pretty_PLog.dart';
Enter fullscreen mode Exit fullscreen mode

Usage


void main() {
  PLog.info('Hello buddy');
  PLog.success('Welcome');
  PLog.warning('I am a bad man. Be careful');
  PLog.error('Ops. We ran into some trouble');

  PLog.black('black');
  PLog.red('red');
  PLog.white('white');
  PLog.cyan('cyan');
  PLog.green('green');
  PLog.yellow('yellow');

  runApp(const MyApp());
}
Enter fullscreen mode Exit fullscreen mode

Pretty Logger on pub.dev

Pretty Logger on github

Top comments (0)