summaryrefslogtreecommitdiff
path: root/cli/napi/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/napi/env.rs')
-rw-r--r--cli/napi/env.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/napi/env.rs b/cli/napi/env.rs
index df9af522f..0adb0481e 100644
--- a/cli/napi/env.rs
+++ b/cli/napi/env.rs
@@ -59,7 +59,7 @@ fn napi_add_env_cleanup_hook(
_hook: extern "C" fn(*const c_void),
_data: *const c_void,
) -> Result {
- eprintln!("napi_add_env_cleanup_hook is currently not supported");
+ log::info!("napi_add_env_cleanup_hook is currently not supported");
Ok(())
}
@@ -69,7 +69,7 @@ fn napi_remove_env_cleanup_hook(
_hook: extern "C" fn(*const c_void),
_data: *const c_void,
) -> Result {
- eprintln!("napi_remove_env_cleanup_hook is currently not supported");
+ log::info!("napi_remove_env_cleanup_hook is currently not supported");
Ok(())
}