Skip to content

Commit

Permalink
add debug level logging for lxd
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Oct 22, 2024
1 parent 6e343fc commit 9f95844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/tests/test_util/harness/lxd.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def delete_instance(self, instance_id: str):
raise HarnessError(f"unknown instance {instance_id}")

try:
run(["lxc", "rm", instance_id, "--force"])
run(["lxc", "rm", instance_id, "--force", "--debug"])
except subprocess.CalledProcessError as e:
raise HarnessError(f"failed to delete instance {instance_id}") from e

Expand Down

0 comments on commit 9f95844

Please sign in to comment.