arna_logger 1.0.4 arna_logger: ^1.0.4 copied to clipboard
Arna Logger is a small and pretty logger for your applications.
Introduction #
A pretty logger for your applications.
Getting Started #
Add Arna Logger as a dependency in your pubspec.yaml:
dependencies:
arna_logger: ^1.0.4
Import it:
import 'package:arna_logger/arna_logger.dart';
Use it!
arnaLogger(title: 'Arna Logger', data: 'Hello World');
┌─────────────────────────────────────────────────────────────────────┐
│ Arna Logger │
├─────────────────────────────────────────────────────────────────────┤
│ Hello World │
└─────────────────────────────────────────────────────────────────────┘
arnaJsonLogger(
title: 'Arna Json Logger',
data: {'text': 'foo', 'value': '2'},
);
┌─────────────────────────────────────────────────────────────────────┐
│ Arna Json Logger │
├─────────────────────────────────────────────────────────────────────┤
│ { │
│ "text": "foo", │
│ "value": "2" │
│ } │
└─────────────────────────────────────────────────────────────────────┘
License #
Arna Logger is BSD 3-Clause licensed.