Remove redundant logging from sol-compiler

This commit is contained in:
Leonid Logvinov 2019-02-26 15:03:06 -08:00
parent 3f0db92be6
commit 0d0fcfe49a
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,13 @@
[
{
"version": "3.1.2",
"changes": [
{
"note": "Remove redundant log message",
"pr": 1652
}
]
},
{
"version": "3.1.1",
"changes": [

View File

@ -36,7 +36,6 @@ export async function getContractArtifactIfExistsAsync(
contractArtifact = JSON.parse(contractArtifactString);
return contractArtifact;
} catch (err) {
logUtils.warn(`Artifact for ${contractName} does not exist`);
return undefined;
}
}