unnecessary log

This commit is contained in:
glax 2023-06-09 23:48:39 +02:00
parent 16c1094875
commit b3321ff030

View File

@ -363,7 +363,6 @@ function ShowTasksQueue(){
var outputDom = downloadTasksPopup.querySelector("popup-content");
outputDom.replaceChildren();
GetRunningTasks().then((taskJson) => {
console.log(taskJson);
taskJson.forEach(task => {
outputDom.appendChild(CreateProgressChild(task));
});