mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-06-09 08:07:43 +00:00
Do not swallow error when not tracing
This commit is contained in:
parent
d03e3c268d
commit
498a43b471
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ async fn main() -> Result<(), BoxError> {
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
if let Err(err) = join_handle.await {
|
if let Err(err) = join_handle.await {
|
||||||
log::trace!("main_entry error {}", err);
|
log::error!("main_entry error {}", err);
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue