get rid of unused e_pixmap parameter of ELOG
[platform/core/uifw/e-mod-tizen-effect.git] / src / e_mod_effect.h
index 8044dc1..e7b8816 100644 (file)
@@ -4,17 +4,16 @@
 # include <e.h>
 # include <tizen-extension-server-protocol.h>
 
-#define EFFINF(f, cp, ec, x...) ELOGF("EFFECT", f, cp, ec, ##x)
-#define EFFDBG(f, cp, ec, x...)                            \
+#define EFFINF(f, ec, x...) ELOGF("EFFECT", f, ec, ##x)
+#define EFFDBG(f, ec, x...)                                \
    do                                                      \
      {                                                     \
-        if ((!cp) && (!ec))                                \
+        if ((!ec))                                         \
           DBG("EWL|%20.20s|             |             |"f, \
-              "EFFECT", ##x);                                   \
+              "EFFECT", ##x);                              \
         else                                               \
-          DBG("EWL|%20.20s|cp:0x%08x|ec:0x%08x|"f,         \
-              "EFFECT",                                         \
-              (unsigned int)(cp),                          \
+          DBG("EWL|%20.20s|             |ec:0x%08x|"f,     \
+              "EFFECT",                                    \
               (unsigned int)(ec),                          \
               ##x);                                        \
      }                                                     \