Skip to content

Commit 8da7d84

Browse files
supercomputer7gmta
authored andcommitted
Kernel/VFS: Remove misleading part of debug message when mounting
1 parent 220e34b commit 8da7d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Kernel/FileSystem/VirtualFileSystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ ErrorOr<void> VirtualFileSystem::add_file_system_to_mount_table(FileSystem& file
114114
auto new_mount = TRY(adopt_nonnull_own_or_enomem(new (nothrow) Mount(file_system, &mount_point, flags)));
115115
return m_mounts.with([&](auto& mounts) -> ErrorOr<void> {
116116
auto& inode = mount_point.inode();
117-
dbgln("VirtualFileSystem: FileSystemID {} (non file-backed), Mounting {} at inode {} with flags {}",
117+
dbgln("VirtualFileSystem: FileSystemID {}, Mounting {} at inode {} with flags {}",
118118
file_system.fsid(),
119119
file_system.class_name(),
120120
inode.identifier(),

0 commit comments

Comments
 (0)