diff options
author | David Teigland <teigland@redhat.com> | 2014-02-14 11:54:44 -0600 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2014-02-14 11:54:44 -0600 |
commit | 075f01775f53640af4a2ca3ed8cbc71de6e37582 (patch) | |
tree | 3ef1bfec3c2d9bee8cd9b2d182bfaf96026c2250 /fs/dlm/ast.c | |
parent | 9505857103007fb96b567a381bb056039559aa6f (diff) | |
download | linux-075f01775f53640af4a2ca3ed8cbc71de6e37582.tar.gz linux-075f01775f53640af4a2ca3ed8cbc71de6e37582.tar.bz2 linux-075f01775f53640af4a2ca3ed8cbc71de6e37582.zip |
dlm: use INFO for recovery messages
The log messages relating to the progress of recovery
are minimal and very often useful. Change these to
the KERN_INFO level so they are always available.
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/ast.c')
-rw-r--r-- | fs/dlm/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/ast.c b/fs/dlm/ast.c index 42794c00a367..dcea1e37a1b7 100644 --- a/fs/dlm/ast.c +++ b/fs/dlm/ast.c @@ -309,6 +309,6 @@ void dlm_callback_resume(struct dlm_ls *ls) mutex_unlock(&ls->ls_cb_mutex); if (count) - log_debug(ls, "dlm_callback_resume %d", count); + log_rinfo(ls, "dlm_callback_resume %d", count); } |