fix: both crate names were wrong by default

This is a leftover from PR #103.
This commit is contained in:
Joonas Koivunen 2020-03-22 13:53:04 +02:00 committed by David Craven
parent c8b44941f6
commit f624d1f7bd

View File

@ -25,7 +25,7 @@ fn main() {
if std::env::var_os("RUST_LOG").is_none() {
// FIXME: see if tracing could be used as the frontend for log macros
// FIXME: use log macros here as well
std::env::set_var("RUST_LOG", "rust-ipfs-http=trace,rust-ipfs=trace");
std::env::set_var("RUST_LOG", "ipfs-http=trace,ipfs=trace");
}
env_logger::init();