Extensible logging for Flutter.
Based on famous Android logging library - Timber, this is library for simplify logging for Flutter. Using similar (as far as Dart lang allows) method API with same concepts for tree and planting logging tree.
To start add using it:
fimber
to pubspec.yaml
dependencies:
fimber: ^0.1.3
import 'package:fimber/fimber.dart';
void main() {
Fimber.addTree(DebugTree());
// app code here ...
}
import 'fimber.dart';
void main() {
var parameter = 343.0;
// use directly
Fimber.i("Test message $argument");
Fimber.i("Extra error message", ex: Exception("Test thorwable"));
// other log levels
Fimber.d("DEBUG");
Fimber.v("VERBOSE");
Fimber.w("WARN");
}
This will log the value and grab a TAG from stacktrace - that is little costly and if more logs will be done per second.
And use its instance inside class, you can create logger for a dart file or for a class.
var logger = FimberLog("MY_TAG");
void main() {
logger.d("Test message");
}
// or inside a class
class SomeBloc {
var logger = FimberLog("SomeBloc");
String fetchMessage() {
logger.d("About to fetch some data.");
//...
var data = "load something";
logger.d("Retrived data (len = ${data.length}");
return data;
}
}
Use this function to log multiple messages with same tag, allows optional return value. Due to nature of auto-tag generation from stacktrace this block only does it once and create local FimberLog instance to pass into the anonymous method.
var someMessage = "Test message from inside of block";
var output = Fimber.block((log) {
log.d("Started block");
var i = 0;
for (i = 0; i < 10; i++) {
log.d("$someMessage, value: $i");
}
log.i("End of block");
return i;
});
Copyright 2018 Mateusz Perlak
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
fimber
Small updates
Initial version with Fimber debugging and DebugTree
example/example.dart
import 'package:fimber/fimber.dart';
void main() {
// plant a tree - DebugTree()
Fimber.plantTree(DebugTree());
Fimber.d("Test message", ex: Exception("test error"));
var parameter = 100.0;
Fimber.w("Test message with parameter: $parameter");
var logger = FimberLog("MY_TAG");
logger.d("Test message", ex: Exception("test error"));
logger.w("Test message with parameter: $parameter");
// save auto tag generation on each call in call block.
Fimber.withTag("TEST BLOCK", (log) {
log.d("Started block");
for (var i = 0; i >= 1; i++) {
log.d("value: $i");
}
log.i("End of block");
});
}
Add this to your package's pubspec.yaml file:
dependencies:
fimber: ^0.1.4
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter packages get
Alternatively, your editor might support pub get
or flutter packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:fimber/fimber.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.1.10 | Feb 3, 2019 |
|
|
0.1.9 | Jan 22, 2019 |
|
|
0.1.8 | Jan 12, 2019 |
|
|
0.1.7 | Dec 19, 2018 |
|
|
0.1.6 | Dec 18, 2018 |
|
|
0.1.5 | Dec 6, 2018 |
|
|
0.1.4 | Nov 30, 2018 |
|
|
0.1.3 | Nov 27, 2018 |
|
|
0.1.2 | Nov 24, 2018 |
|
|
0.1.1 | Nov 8, 2018 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
75
|
Health:
Code health derived from static analysis.
[more]
|
100
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100
|
Overall:
Weighted score of the above.
[more]
|
88
|
We analyzed this package on Feb 14, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Detected platforms: Flutter, web, other
No platform restriction found in primary library
package:fimber/fimber.dart
.
Format lib/fimber.dart
.
Run dartfmt
to format lib/fimber.dart
.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0-dev.68.0 <3.0.0 | ||
Dev dependencies | |||
test | ^1.5.1 |