From 8e648a0a93475ecfabb1ddfc342d55d79b3925fa Mon Sep 17 00:00:00 2001 From: George Lacey Date: Wed, 6 Apr 2022 13:26:20 +0100 Subject: [PATCH] Add console logging --- borgweb/borg/static/borg/js/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/borgweb/borg/static/borg/js/index.js b/borgweb/borg/static/borg/js/index.js index c2a0c5d..7fbaa01 100644 --- a/borgweb/borg/static/borg/js/index.js +++ b/borgweb/borg/static/borg/js/index.js @@ -25,7 +25,9 @@ window.addEventListener("DOMContentLoaded", function () { $.getJSON(`/repo_list.json`, function (repo_list) { repo_list.labels.forEach(function (repo_label) { + console.log("got list") $.getJSON(`/repo/${repo_label}.json`, function (repo_json) { + console.log(`got ${repo_label}`) inflateRepo(repo_json, repo_label, template, container); }) });