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/dlm_internal.h | |
parent | 9505857103007fb96b567a381bb056039559aa6f (diff) |
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/dlm_internal.h')
-rw-r--r-- | fs/dlm/dlm_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/dlm/dlm_internal.h b/fs/dlm/dlm_internal.h index e7665c31f7b1..5eff6ea3e27f 100644 --- a/fs/dlm/dlm_internal.h +++ b/fs/dlm/dlm_internal.h @@ -65,6 +65,8 @@ struct dlm_mhandle; printk(KERN_ERR "dlm: "fmt"\n" , ##args) #define log_error(ls, fmt, args...) \ printk(KERN_ERR "dlm: %s: " fmt "\n", (ls)->ls_name , ##args) +#define log_rinfo(ls, fmt, args...) \ + printk(KERN_INFO "dlm: %s: " fmt "\n", (ls)->ls_name , ##args); #define log_debug(ls, fmt, args...) \ do { \ |