mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Kernel/VFS: Remove misleading part of debug message when mounting
This commit is contained in:
parent
220e34b69d
commit
8da7d84512
Notes:
sideshowbarker
2024-07-17 05:00:08 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/8da7d84512 Pull-request: https://github.com/SerenityOS/serenity/pull/20358 Reviewed-by: https://github.com/gmta ✅
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ ErrorOr<void> VirtualFileSystem::add_file_system_to_mount_table(FileSystem& file
|
|||
auto new_mount = TRY(adopt_nonnull_own_or_enomem(new (nothrow) Mount(file_system, &mount_point, flags)));
|
||||
return m_mounts.with([&](auto& mounts) -> ErrorOr<void> {
|
||||
auto& inode = mount_point.inode();
|
||||
dbgln("VirtualFileSystem: FileSystemID {} (non file-backed), Mounting {} at inode {} with flags {}",
|
||||
dbgln("VirtualFileSystem: FileSystemID {}, Mounting {} at inode {} with flags {}",
|
||||
file_system.fsid(),
|
||||
file_system.class_name(),
|
||||
inode.identifier(),
|
||||
|
|
Loading…
Reference in a new issue