Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
add some logging to test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
eggplantzzz committed Jul 13, 2022
1 parent 396b44b commit a92692b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/compile-solidity/src/run.js
Expand Up @@ -235,6 +235,7 @@ async function invokeCompiler({ compilerInput, options, solc }) {
// perform compilation
const inputString = JSON.stringify(compilerInput);
const outputString = solc.compile(inputString);
console.log("the output -- %o", outputString);
const compilerOutput = JSON.parse(outputString);

return {
Expand Down Expand Up @@ -316,7 +317,7 @@ function processAllSources({ sources, compilerOutput, originalSourcePaths, langu
sourcePath: originalSourcePaths[sourcePath],
contents,
language
}]
}];
} else {
return [];
}
Expand Down

0 comments on commit a92692b

Please sign in to comment.