pub.dev

Introduction

A pretty logger for your applications.

Getting Started

Add Arna Logger as a dependency in your pubspec.yaml:

dependencies:
  arna_logger: ^1.0.7

Import it:

import 'package:arna_logger/arna_logger.dart';

Use it!

arnaLogger(title: 'Arna Logger', data: 'Hello World');
┌─────────────────────────────────────────────────────────────────────┐
│ Arna Logger                                                         │
├─────────────────────────────────────────────────────────────────────┤
│ Hello World                                                         │
└─────────────────────────────────────────────────────────────────────┘
arnaLogger(
  title: 'Arna Json Logger',
  data: {'text': 'foo', 'value': '2'},
);
┌─────────────────────────────────────────────────────────────────────┐
│ Arna Json Logger                                                    │
├─────────────────────────────────────────────────────────────────────┤
│ {                                                                   │
│   "text": "foo",                                                    │
│   "value": "2"                                                      │
│ }                                                                   │
└─────────────────────────────────────────────────────────────────────┘

License

Arna Logger is BSD 3-Clause licensed.

Libraries

arna_logger
Arna Logger is a small and pretty logger for your applications.