Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
montyly committed Oct 12, 2023
1 parent 8b0bc8f commit bc69c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crytic_compile/platform/vyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def compile(self, crytic_compile: "CryticCompile", **kwargs: str) -> None:

compiler_version = compilation_artifacts["compiler"].split("-")[1]
if compiler_version != "0.3.7":
logging.info("Vyper != 0.3.7 support is a best effort and might fail")
LOGGER.info("Vyper != 0.3.7 support is a best effort and might fail")
compilation_unit.compiler_version = CompilerVersion(
compiler="vyper", version=compiler_version, optimized=False
)
Expand Down

0 comments on commit bc69c9e

Please sign in to comment.