logging library for using rust together with flutter/dart and flutterrustbridge to get logs from rust into your app.
panic
: print rust panics to the log streamThis code is not complete. Look into the example folder for a full working example.
```rs pub fn test(i: i32) { // using own macros logi!("test called with: {i}"); // using the 'log' crate macros info!("test called with: {i}") }
pub fn init(sink: StreamSink
```dart final rust_lib = void setupLogger(){ rustLib.init().listen((msg){ // This should use a logging framework in real applications print("${msg.logLevel} ${msg.lbl.padRight(8)}: ${msg.msg}"); }); }
void main(){ setupLogger(); rustLib.test(i: 5); }
```
This works also on mobile apps like Android where println() in rust isn't shown in the console.