File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ os :
2
+ - linux
3
+ sudo : false
4
+ addons :
5
+ apt :
6
+ # Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
7
+ sources :
8
+ - ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
9
+ packages :
10
+ - libstdc++6
11
+ - fonts-droid
12
+ before_script :
13
+ - git clone https://github.com/flutter/flutter.git -b beta
14
+ - ./flutter/bin/flutter doctor
15
+ script :
16
+ - ./flutter/bin/flutter pub get
17
+ - ./flutter/bin/cache/dart-sdk/bin/dartfmt -n --set-exit-if-changed ./lib ./test ./example || travis_terminate 1
18
+ cache :
19
+ directories :
20
+ - $HOME/.pub-cache
Original file line number Diff line number Diff line change 1
1
# Logger
2
2
3
- [ ![ Version] ( https://img.shields.io/pub/v/logger.svg )] ( https://pub.dev/packages/logger ) ![ Runtime] ( https://img.shields.io/badge/dart-%3E%3D2.1-brightgreen.svg ) ![ GitHub license] ( https://img.shields.io/badge/license-MIT-blue.svg?style=flat )
3
+ [ ![ Travis ] ( https://img.shields.io/travis/com/leisim/logger/master.svg )] ( https://travis-ci.com/leisim/logger ) [ ![ Version] ( https://img.shields.io/pub/v/logger.svg )] ( https://pub.dev/packages/logger ) ![ Runtime] ( https://img.shields.io/badge/dart-%3E%3D2.1-brightgreen.svg ) ![ GitHub license] ( https://img.shields.io/badge/license-MIT-blue.svg?style=flat )
4
4
5
5
Small, easy to use and extensible logger which prints beautiful logs.<br >
6
6
Inspired by [ logger] ( https://github.com/orhanobut/logger ) for Android.
Original file line number Diff line number Diff line change 1
1
import 'package:logger/logger.dart' ;
2
2
3
- var logger = Logger (printer : PrettyPrinter () );
3
+ var logger = Logger ();
4
4
5
5
var loggerNoStack = Logger (printer: PrettyPrinter (methodCount: 0 ));
6
6
You can’t perform that action at this time.
0 commit comments