Skip to content

Commit

Permalink
Remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
abinavpp committed Feb 19, 2025
1 parent 0ea97dc commit fc641a4
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions libsolc/libsolc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,20 +125,11 @@ std::string compile(
frontend::SMTSolverCommand solverCommand;
frontend::FileReader fileReader;
if (_basePath)
{
std::cout << "Base-path: " << _basePath << "\n";
fileReader.setBasePath(_basePath);
}
for (uint64_t i = 0; i < _numIncludePaths; ++i)
{
std::cout << "Include-path " << i << ": " << _includePaths[i] << "\n";
fileReader.addIncludePath(_includePaths[i]);
}
for (uint64_t i = 0; i < _numAllowedDirectories; ++i)
{
std::cout << "Allow-dir " << i << ": " << _allowedDirectories[i] << "\n";
fileReader.allowDirectory(_allowedDirectories[i]);
}
frontend::UniversalCallback universalCallback(&fileReader, solverCommand);

StandardCompiler compiler(universalCallback.callback());
Expand Down

0 comments on commit fc641a4

Please sign in to comment.