flutter_logcat 1.1.0
flutter_logcat: ^1.1.0 copied to clipboard
you can distribute check Log on Flutter's console. very simple usage!
#
💘 tool🤍 useful💚 simple💙 easy💛 like💖
🚀 struct #
flutter_logcat
need only three parameters there are message
, tag
, path
message
: if yon want input message to watch on console.tag
: this is when you define something tag name.path
: if you define true, you can watch file preference path. (default: false)
💌 console print #
message | tag | path | output |
---|---|---|---|
✔️ | ❌ | ❌ | [className:lineNumber] message |
✔️ | ✔️ | ❌ | (tag) [className:lineNumber] message |
✔️ | ❌ | ✔️ | [className(packageName/className.dart):lineNumber] message |
✔️ | ✔️ | ✔️ | (tag) [className(packageName/className.dart):lineNumber] message |
🌟 usage #
- normal
result >[_ExampleScreenState:30] message
Log.v("message");
Log.i("message");
Log.d("message");
Log.w("message");
Log.e("message");
- add 'path' (default: false, type - bool)
result >[_ExampleScreenState(example/main.dart):35] message
Log.v("message", path: true);
Log.i("message", path: true);
Log.d("message", path: true);
Log.w("message", path: true);
Log.e("message", path: true);
- add 'tag' (type - String)
result >(donguran) [_ExampleScreenState(example/main.dart):48] message
Log.v("message", tag: "donguran");
Log.i("message", tag: "donguran");
Log.d("message", tag: "donguran");
Log.w("message", tag: "donguran");
Log.e("message", tag: "donguran");