Skip to content

Commit

Permalink
Changed error logging to be debug and user facing
Browse files Browse the repository at this point in the history
  • Loading branch information
hexbabe committed Sep 25, 2023
1 parent 202e682 commit 7ee718b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ffi/dial_ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ pub unsafe extern "C" fn dial(
}) {
Ok(s) => s,
Err(e) => {
log::error!("Error building GRPC proxy reason : {}", e);
log::error!("Error building GRPC proxy reason : {:?}\n{}", e, e);
return ptr::null_mut();
}
};
Expand Down

0 comments on commit 7ee718b

Please sign in to comment.