Write proxy config to stdout to separate it from logs

This commit is contained in:
Alex 2022-01-19 14:53:19 +01:00
parent de4bc8abc4
commit d7511c683d
No known key found for this signature in database
GPG Key ID: EDABF9711E244EB1
1 changed files with 3 additions and 2 deletions

View File

@ -135,10 +135,11 @@ async fn main() {
);
while rx_proxy_config.changed().await.is_ok() {
info!("Proxy config:");
println!("---- PROXY CONFIGURATION ----");
for ent in rx_proxy_config.borrow().entries.iter() {
info!(" {}", ent);
println!(" {}", ent);
}
println!();
}
}