diff --git a/builder.py b/builder.py index 0ffbf29..b6726e3 100644 --- a/builder.py +++ b/builder.py @@ -45,7 +45,7 @@ def __str__(self): # set a value in the 'buffer' if this is not already present def add(self, key, value): - print("Adding %s for %s:\n%s" % (value, key, self), file=sys.stderr) + #print("Adding %s for %s:\n%s" % (value, key, self), file=sys.stderr) if key not in self.written or value not in self.written[key]: if key in self.to_write: self.to_write[key].add(value) diff --git a/templates/index.html b/templates/index.html index 7361792..61827a8 100644 --- a/templates/index.html +++ b/templates/index.html @@ -78,7 +78,6 @@

Policy Manifest

url: "{{ url_for('remove_binary') }}", data: { ns: ns, wl: wl, binary: binary }, success: function (response) { - console.log("Response:", response); window.location.reload(); }, error: function (error) { @@ -101,7 +100,6 @@

Policy Manifest

type: "GET", url: "/show_policy/" + ns + "/" + wl, success: function (response) { - console.log("Response:", response); // Inject yaml in the modal yaml.textContent = response; hljs.highlightAll();