Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions client/executor/src/native_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -560,9 +560,11 @@ impl<D: NativeExecutionDispatch + 'static> CodeExecutor for NativeElseWasmExecut
if !can_call_with {
trace!(
target: "executor",
"Request for native execution failed (native: {}, chain: {})",
"Request for native execution failed (native: {}, chain: {}) \
(method: {})",
self.native_version.runtime_version,
onchain_version,
method,
);
}

Expand All @@ -575,9 +577,10 @@ impl<D: NativeExecutionDispatch + 'static> CodeExecutor for NativeElseWasmExecut
trace!(
target: "executor",
"Request for native execution with native call succeeded \
(native: {}, chain: {}).",
(native: {}, chain: {}) (method: {}).",
self.native_version.runtime_version,
onchain_version,
method,
);

used_native = true;
Expand All @@ -589,9 +592,11 @@ impl<D: NativeExecutionDispatch + 'static> CodeExecutor for NativeElseWasmExecut
_ => {
trace!(
target: "executor",
"Request for native execution succeeded (native: {}, chain: {})",
"Request for native execution succeeded (native: {}, chain: {}) \
(method: {})",
self.native_version.runtime_version,
onchain_version
onchain_version,
method,
);

used_native = true;
Expand Down