rename state-trace to storage (#5766)

This commit is contained in:
Nikolay Volf
2020-04-24 16:47:00 +03:00
committed by GitHub
parent 035efc1663
commit a01e608dff
2 changed files with 20 additions and 20 deletions
@@ -301,7 +301,7 @@ impl<'a, B, H, N, Exec> StateMachine<'a, B, H, N, Exec> where
let id = ext.id;
trace!(
target: "state-trace", "{:04x}: Call {} at {:?}. Input={:?}",
target: "state", "{:04x}: Call {} at {:?}. Input={:?}",
id,
self.method,
self.backend,
@@ -318,7 +318,7 @@ impl<'a, B, H, N, Exec> StateMachine<'a, B, H, N, Exec> where
);
trace!(
target: "state-trace", "{:04x}: Return. Native={:?}, Result={:?}",
target: "state", "{:04x}: Return. Native={:?}, Result={:?}",
id,
was_native,
result,