belesspathetic / fb_poster

An unofficial Rust API client for Facebook post uploads.
3 stars 1 forks source link

Replace printl with debug #3

Open milen-denev opened 6 months ago

milen-denev commented 6 months ago

Making such messages optional if RUST_LOG is set to debug can increase performance and reduce console outputs in general.

Enable messages:

    std::env::set_var("RUST_LOG", "debug");
belesspathetic commented 6 months ago

Making such messages optional if RUST_LOG is set to debug can increase performance and reduce console outputs in general.

Enable messages:

    std::env::set_var("RUST_LOG", "debug");

cool