fs: ext4: make "File System is consistent\n" a debug message

When accessing an ext2 system the message "File System is consistent\n" is
shown after each write. This is superfluous noise. Only write a debug
message.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
Heinrich Schuchardt 2024-03-20 14:23:52 +01:00 committed by Tom Rini
parent bcdd02328e
commit 84a78872c4

View File

@ -430,7 +430,7 @@ int ext4fs_check_journal_state(int recovery_flag)
printf("Recovery required\n");
} else {
if (recovery_flag == RECOVER)
printf("File System is consistent\n");
log_debug("File System is consistent\n");
goto end;
}