Lower log level

This commit is contained in:
Willian Mitsuda 2021-09-29 16:34:49 -03:00
parent b770de3117
commit 7b8dd7d159
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ const Details: React.FC<DetailsProps> = ({
try {
return txData && toUtf8String(txData.data);
} catch (err) {
console.error("Error while converting input data to string");
console.error(err);
console.warn("Error while converting input data to string");
console.warn(err);
return "<can't decode>";
}
}, [txData]);