#flutter #logging #dart #mobile

flutter_logger

logging library for using rust together with flutter/dart and flutter_rust_bridge

7 releases (breaking)

0.6.1 Mar 10, 2024
0.6.0 Feb 7, 2024
0.5.0 Jan 24, 2024
0.4.0 Aug 16, 2023
0.1.0 Jul 12, 2023

#234 in Debugging

Download history 4/week @ 2024-01-21 6/week @ 2024-02-04 11/week @ 2024-02-18 34/week @ 2024-02-25 2/week @ 2024-03-03 174/week @ 2024-03-10 9/week @ 2024-03-17 28/week @ 2024-03-24 44/week @ 2024-03-31 7/week @ 2024-04-07 20/week @ 2024-04-14 59/week @ 2024-04-21 182/week @ 2024-04-28 186/week @ 2024-05-05

447 downloads per month

MIT/Apache

28KB
626 lines

flutter_logger

implementation of the log crate for using rust together with flutter/dart and flutter_rust_bridge to get logs from rust into your app.

features

  • panic: print rust panics to the log stream.

usage

The library contains a macro for all the code you have to include in your flutter_rust_bridge api definition. Calling the macro without args creates the init function "setup_log_stream" with LeveFilter::Debug. You can also specify function name and LevelFilter (or only one). The macro can only be called once because of conflicting implementations

rust


// only one of these calls can be active
flutter_logger::flutter_logger_init!(); // default
// flutter_logger::flutter_logger_init!(LeveFilter::Trace); // sepcify level
// flutter_logger::flutter_logger_init!(logger_init); // sepcify name
// flutter_logger::flutter_logger_init!(info_logger, LevelFilter::Info); // sepcify both

pub fn test(i: i32) {
    // using the 'log' crate macros
    info!("test called with: {i}")
}

dart/flutter

Future setupLogger() async {
    setupLogStream().listen((msg){
    // This should use a logging framework in real applications
        print("${msg.logLevel} ${msg.lbl.padRight(8)}: ${msg.msg}");
    });
}

void main(){
    await RustLib.init();
    await setupLogger();
    await test(i: 5);
}

This works also on mobile apps like Android where println() in rust isn't shown in the console.

Dependencies

~135KB