re-add logging now that it isn't part of rpc context

This commit is contained in:
Aiden McClelland
2022-02-18 13:57:48 -07:00
committed by Keagan McClelland
parent 075e68c254
commit 77da4a7e0c

View File

@@ -13,6 +13,7 @@ use embassy::net::mdns::MdnsController;
use embassy::net::tor::tor_health_check;
use embassy::shutdown::Shutdown;
use embassy::system::launch_metrics_task;
use embassy::util::logger::EmbassyLogger;
use embassy::util::{daemon, Invoke};
use embassy::{static_server, Error, ErrorKind, ResultExt};
use futures::{FutureExt, TryFutureExt};
@@ -288,6 +289,8 @@ fn main() {
)
.get_matches();
EmbassyLogger::init();
let cfg_path = matches.value_of("config");
let res = {