flutter_logger

Crates.ioflutter_logger
lib.rsflutter_logger
version0.6.1
sourcesrc
created_at2023-07-12 10:17:28.105289
updated_at2024-03-10 13:05:05.432539
descriptionlogging library for using rust together with flutter/dart and flutter_rust_bridge
homepagehttps://github.com/MnlPhlp/flutter_logger
repositoryhttps://github.com/MnlPhlp/flutter_logger
max_upload_size
id914409
size56,636
Manuel Philipp (MnlPhlp)

documentation

README

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.

Commit count: 18

cargo fmt