Truncate output in logs. (#930)

This commit is contained in:
Tomasz Drwięga
2021-04-23 22:01:04 +02:00
committed by Bastian Köcher
parent 7c2b54c5e7
commit 816fb36107
+1 -2
View File
@@ -314,8 +314,7 @@ impl<T: Config<I>, I: Instance> MessageDispatch<T::MessageId> for Pallet<T, I> {
// finally dispatch message
let origin = RawOrigin::Signed(origin_account).into();
log::trace!(target: "runtime::bridge-dispatch", "Message being dispatched is: {:?}", &call);
log::trace!(target: "runtime::bridge-dispatch", "Message being dispatched is: {:.4096?}", &call);
let dispatch_result = call.dispatch(origin);
let actual_call_weight = extract_actual_weight(&dispatch_result, &dispatch_info);