improve logging

This commit is contained in:
E44
2025-11-08 22:18:10 +01:00
parent e7588ce2d2
commit 7888a0aa6e
2 changed files with 1 additions and 5 deletions
@@ -32,7 +32,6 @@ export async function edit_display_data(display_id: string, ip: string, mac: str
} }
export function remove_display(display_id: string) { export function remove_display(display_id: string) {
console.log(display_id);
displays.update((displays: DisplayGroup[]) => { displays.update((displays: DisplayGroup[]) => {
displays = displays.map(display_group => ({ displays = displays.map(display_group => ({
...display_group, ...display_group,
@@ -118,7 +117,6 @@ export async function update_screenshot(display_id: string, check_type: "first_c
const old_blob = await fetch(display.preview_url).then(r => r.blob()); const old_blob = await fetch(display.preview_url).then(r => r.blob());
const new_hash = await image_content_hash(new_blob); const new_hash = await image_content_hash(new_blob);
const old_hash = await image_content_hash(old_blob); const old_hash = await image_content_hash(old_blob);
console.log(old_hash, new_hash);
update_needed = old_hash !== new_hash; // if different -> update update_needed = old_hash !== new_hash; // if different -> update
} }
} }
+1 -3
View File
@@ -33,11 +33,10 @@ export async function change_file_path(new_path: string) {
for (const display_group of get(displays)) { for (const display_group of get(displays)) {
for (const display of display_group.data) { for (const display of display_group.data) {
const changed_paths = await get_changed_directory_paths(display, new_path); const changed_paths = await get_changed_directory_paths(display, new_path);
console.log(changed_paths)
if (!changed_paths) continue; if (!changed_paths) continue;
console.log("Update file system from", display.name, ":", changed_paths);
for (const path of changed_paths) { for (const path of changed_paths) {
update_folder_elements_recursively(display, path); update_folder_elements_recursively(display, path);
console.log(path, "updated")
} }
} }
} }
@@ -70,7 +69,6 @@ async function get_changed_directory_paths(display: Display, file_path: string):
const current_folder = await get_file_tree_data(display.ip, file_path); const current_folder = await get_file_tree_data(display.ip, file_path);
if (current_folder === null) return null; if (current_folder === null) return null;
const directory_strings = get_recursive_changed_directory_paths(display, file_path, current_folder, get(all_files)); const directory_strings = get_recursive_changed_directory_paths(display, file_path, current_folder, get(all_files));
console.log(directory_strings);
if (directory_strings.size === 0) return null; if (directory_strings.size === 0) return null;
const directory_strings_array = [...directory_strings]; const directory_strings_array = [...directory_strings];
return directory_strings_array.filter((e) => (!directory_strings_array.some((f) => (f !== e && f.startsWith(e))))); return directory_strings_array.filter((e) => (!directory_strings_array.some((f) => (f !== e && f.startsWith(e)))));