Lower log level
This commit is contained in:
parent
b770de3117
commit
7b8dd7d159
|
@ -66,8 +66,8 @@ const Details: React.FC<DetailsProps> = ({
|
||||||
try {
|
try {
|
||||||
return txData && toUtf8String(txData.data);
|
return txData && toUtf8String(txData.data);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Error while converting input data to string");
|
console.warn("Error while converting input data to string");
|
||||||
console.error(err);
|
console.warn(err);
|
||||||
return "<can't decode>";
|
return "<can't decode>";
|
||||||
}
|
}
|
||||||
}, [txData]);
|
}, [txData]);
|
||||||
|
|
Loading…
Reference in New Issue