diff options
author | Heinrich Schuchardt | 2024-03-20 14:23:52 +0100 |
---|---|---|
committer | Tom Rini | 2024-04-10 09:34:53 -0600 |
commit | 84a78872c4d359cedc7dcb90a3cc2ef61f7098cf (patch) | |
tree | c4f4faee7f13def071230a6c7fbdfd6f53c810dc /fs | |
parent | bcdd02328e65130915965fdc378c89bb8e2c08bc (diff) |
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>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/ext4_journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ext4_journal.c b/fs/ext4/ext4_journal.c index 1a340b4764c..e80f797c8dc 100644 --- a/fs/ext4/ext4_journal.c +++ b/fs/ext4/ext4_journal.c @@ -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; } |