refactor(control): remove unnecessary logging

This commit is contained in:
E44
2026-01-04 23:27:54 +01:00
parent 2367dc0c9e
commit b775fae9c0
2 changed files with 0 additions and 12 deletions
@@ -1,4 +1,3 @@
import { dev } from '$app/environment';
import { db } from './files_display.db';
import { get_display_by_id } from './stores/displays';
import {
@@ -118,10 +117,6 @@ async function start_task_loop() {
case 'sync':
break;
}
if (dev) {
console.debug('AKTUELL IN TASKS', tasks.length);
}
tasks.shift(); // Remove current_task from tasks
}
}