[JFFS2] Make the JFFS2 messages a bit nicer
authorArtem B. Bityutskiy <dedekind@infradead.org>
Wed, 17 Aug 2005 13:42:09 +0000 (14:42 +0100)
committerThomas Gleixner <tglx@mtd.linutronix.de>
Sun, 6 Nov 2005 19:24:15 +0000 (20:24 +0100)
Signed-off-by: Artem B. Bityutskiy <dedekind@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
fs/jffs2/debug.h

index 3a7b11c..676188e 100644 (file)
@@ -7,7 +7,7 @@
  *
  * For licensing information, see the file 'LICENCE' in this directory.
  *
- * $Id: debug.h,v 1.12 2005/08/05 10:43:47 dedekind Exp $
+ * $Id: debug.h,v 1.13 2005/08/17 13:42:06 dedekind Exp $
  *
  */
 #ifndef _JFFS2_DEBUG_H_
 #define JFFS2_ERROR(fmt, ...)                                          \
        do {                                                            \
                printk(JFFS2_ERR_LVL JFFS2_ERR_MSG_PREFIX               \
-                       " %d,%s: " fmt, current->pid,                   \
+                       " %d (%s): " fmt, current->pid,                 \
                        __FUNCTION__, ##__VA_ARGS__);                   \
        } while(0)
 
 #define JFFS2_WARNING(fmt, ...)                                                \
        do {                                                            \
                printk(JFFS2_WARN_LVL JFFS2_WARN_MSG_PREFIX             \
-                       " %d,%s: " fmt, current->pid,                   \
+                       " %d (%s): " fmt, current->pid,                 \
                        __FUNCTION__, ##__VA_ARGS__);                   \
        } while(0)
                        
 #define JFFS2_NOTICE(fmt, ...)                                         \
        do {                                                            \
                printk(JFFS2_NOTICE_LVL JFFS2_NOTICE_MSG_PREFIX         \
-                       " %d,%s: " fmt, current->pid,                   \
+                       " %d (%s): " fmt, current->pid,                 \
                        __FUNCTION__, ##__VA_ARGS__);                   \
        } while(0)
 
 #define JFFS2_DEBUG(fmt, ...)                                          \
        do {                                                            \
                printk(JFFS2_DBG_LVL JFFS2_DBG_MSG_PREFIX               \
-                       " %d,%s: " fmt, current->pid,                   \
+                       " %d (%s): " fmt, current->pid,                 \
                        __FUNCTION__, ##__VA_ARGS__);                   \
        } while(0)