From 440d8be7d093e3b31c0e2f8e1e11f332b226bb4b Mon Sep 17 00:00:00 2001 From: Roy Lane Date: Tue, 14 Jan 2025 16:43:38 -0500 Subject: [PATCH] dump opa command --- scubagoggles/run_rego.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scubagoggles/run_rego.py b/scubagoggles/run_rego.py index 60437966..452ac065 100644 --- a/scubagoggles/run_rego.py +++ b/scubagoggles/run_rego.py @@ -61,7 +61,7 @@ def opa_eval(product_name: str, command.append('--explain=full') try: - log.debug('Running OPA: %s', ' '.join(command)) + log.warning('Running OPA: "%s"', ' '.join(command)) output = subprocess.run(command, capture_output=True, check=True) str_output = output.stdout.decode()