From 565d6cb60d2bf44f7d8994f758c5fe632cb2a3c6 Mon Sep 17 00:00:00 2001 From: Johnathan Sharratt Date: Mon, 6 Mar 2023 11:42:09 +1100 Subject: [PATCH] Missed one of the syscalls for the tracing fix --- lib/wasi/src/syscalls/wasix/sock_shutdown.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wasi/src/syscalls/wasix/sock_shutdown.rs b/lib/wasi/src/syscalls/wasix/sock_shutdown.rs index 12fdbdc6a36..4759a79c770 100644 --- a/lib/wasi/src/syscalls/wasix/sock_shutdown.rs +++ b/lib/wasi/src/syscalls/wasix/sock_shutdown.rs @@ -8,7 +8,7 @@ use crate::syscalls::*; /// ## Parameters /// /// * `how` - Which channels on the socket to shut down. -#[instrument(level = "debug", ret)] +#[instrument(level = "debug", skip-all, fields(sock), ret)] pub fn sock_shutdown(mut ctx: FunctionEnvMut<'_, WasiEnv>, sock: WasiFd, how: SdFlags) -> Errno { let both = __WASI_SHUT_RD | __WASI_SHUT_WR; let how = match how {