replace log::info with log::trace

This commit is contained in:
vms 2020-09-17 20:21:27 +03:00
parent 923f3d5894
commit d622dc7b39
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -195,7 +195,7 @@ checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
[[package]]
name = "wasmer-interface-types-fl"
version = "0.17.6"
version = "0.17.7"
dependencies = [
"log",
"nom",

View File

@ -1,6 +1,6 @@
[package]
name = "wasmer-interface-types-fl"
version = "0.17.6"
version = "0.17.7"
description = "WebAssembly Interface Types library for Wasmer"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]

View File

@ -35,7 +35,7 @@ where
})?
.view();
log::info!("reading {} bytes from offset {}", size, offset);
log::trace!("reading {} bytes from offset {}", size, offset);
let right = offset + size;
if right < offset || right >= memory_view.len() {
@ -79,7 +79,7 @@ where
})?
.view();
log::info!("writing {} bytes from offset {}", bytes.len(), offset);
log::trace!("writing {} bytes from offset {}", bytes.len(), offset);
let right = offset + bytes.len();
if right < offset || right >= memory_view.len() {