Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Refactor references to the deprecated custom logger
Browse files Browse the repository at this point in the history
The custom logger class has been removed from Molecule and thus we must
remove those references from the plugin.

ansible/molecule#2978
  • Loading branch information
abtreece committed Nov 20, 2020
1 parent a2e3d59 commit c390e2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion molecule_inspec/inspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def execute(self):
self._config.provisioner.verify()

msg = "Verifier completed successfully."
LOG.success(msg)
LOG.info(msg)

def _get_tests(self):
"""
Expand Down
2 changes: 1 addition & 1 deletion molecule_inspec/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ def with_scenario(request, scenario_to_test, driver_name, scenario_name):
yield
if scenario_name:
msg = "CLEANUP: Destroying instances for all scenario(s)"
LOG.out(msg)
LOG.info(msg)
cmd = ["molecule", "destroy", "--driver-name", driver_name, "--all"]
assert run_command(cmd).returncode == 0

0 comments on commit c390e2b

Please sign in to comment.