Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodlz committed Feb 7, 2024
1 parent 44344ab commit 7825096
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tools/fill_conf_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def nginx_brotli_installed():
output = subprocess.check_output(
["nginx", "-V"], stderr=subprocess.STDOUT
).decode("utf-8")
print(f"nginx -V output:\n {output}")
if (
"--add-module" in output
and "brotli" in output.split("--add-module")[1].strip()
Expand Down Expand Up @@ -101,7 +100,6 @@ def fill_config_file_values(template_paths):
log("Compiling configuration templates")
env, cfg = load_env()
installed, dynamic, modules_dir = nginx_brotli_installed()
print(f"Installed: {installed}, Dynamic: {dynamic}, Modules dir: {modules_dir}")
cfg["fill_config_feature"] = {
"nginx_brotli": {
"installed": installed,
Expand Down

0 comments on commit 7825096

Please sign in to comment.