Merge pull request #1653 from 0xProject/fix/remove-redundant-log

Remove redundant logging from sol-compiler
This commit is contained in:
Leonid Logvinov
2019-02-27 12:26:45 -08:00
committed by GitHub
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;
}
}