From c9d904df716a172c01606607171e1ac936b85ef1 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Fri, 9 Apr 2021 15:44:37 +0200 Subject: [PATCH] vfs/tar: remove "tar archive ..." message This diagnostic output is a mere debugging artifact. By removing them, we make the boot of Sculpt less noisy. --- repos/os/src/lib/vfs/tar_file_system.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/repos/os/src/lib/vfs/tar_file_system.h b/repos/os/src/lib/vfs/tar_file_system.h index d9941deb5f..b239e1f1a4 100644 --- a/repos/os/src/lib/vfs/tar_file_system.h +++ b/repos/os/src/lib/vfs/tar_file_system.h @@ -558,9 +558,6 @@ class Vfs::Tar_file_system : public File_system _root_node("", 0), _cached_num_dirent(_root_node) { - Genode::log("tar archive '", _rom_name, "' " - "local at ", (void *)_tar_base, ", size is ", _tar_size); - _for_each_tar_record_do(Add_node_action(_alloc, _root_node)); }