get rid of unused e_pixmap parameter of ELOG 40/196140/2
authorGwanglim Lee <gl77.lee@samsung.com>
Mon, 24 Dec 2018 02:41:37 +0000 (11:41 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Mon, 24 Dec 2018 05:45:49 +0000 (14:45 +0900)
Change-Id: Id97994306e83fe33e08d3cdff5e8aa853694af29

packaging/e-mod-tizen-processmgr.spec
src/e_mod_processmgr.c

index 5c6af27..ec67182 100644 (file)
@@ -26,7 +26,7 @@ This package is a processmgr module for enlightenment.
 
 %build
 export GC_SECTIONS_FLAGS="-fdata-sections -ffunction-sections -Wl,--gc-sections"
-export CFLAGS+=" -Wall -Werror-implicit-function-declaration -g -fPIC -rdynamic ${GC_SECTIONS_FLAGS} -DE_LOGGING=1"
+export CFLAGS+=" -Wall -Werror-implicit-function-declaration -g -fPIC -rdynamic ${GC_SECTIONS_FLAGS} -DE_LOGGING=2"
 export LDFLAGS+=" -Wl,--hash-style=both -Wl,--as-needed -Wl,--rpath=/usr/lib"
 
 %if %{with wayland}
index 6935fa8..1cdd381 100644 (file)
@@ -60,7 +60,7 @@ _e_processmgr_process_action_send(int pid, E_Process_Action act)
         return;
      }
 
-   ELOGF("PROCESSMGR", "SEND ACTION:%d to PID:%d", NULL, NULL, act, pid);
+   ELOGF("PROCESSMGR", "SEND ACTION:%d to PID:%d", NULL, act, pid);
    // send the message
    if (!eldbus_connection_send(_dbus_conn, msg, NULL, NULL, -1))
      return;
@@ -105,7 +105,7 @@ _e_processmgr_process_info_get(const Eldbus_Service_Interface *iface EINA_UNUSED
    int is_focused = 0;
    Eina_Bool ret;
 
-   ELOGF("PROCESSMGR", "Get request - GetProcStatus", NULL, NULL);
+   ELOGF("PROCESSMGR", "Get request - GetProcStatus", NULL);
 
    reply = eldbus_message_method_return_new(msg);
    EINA_SAFETY_ON_NULL_RETURN_VAL(reply, NULL);
@@ -120,7 +120,7 @@ _e_processmgr_process_info_get(const Eldbus_Service_Interface *iface EINA_UNUSED
    is_focused = _e_processmgr_process_is_focused(pid);
 
    ret = eldbus_message_arguments_append(reply, "ii", status, is_focused);
-   ELOGF("PROCESSMGR", "Reply result:%d, state:%d, is_focused:%d", NULL, NULL, ret, status, is_focused);
+   ELOGF("PROCESSMGR", "Reply result:%d, state:%d, is_focused:%d", NULL, ret, status, is_focused);
 
    return reply;
 }
@@ -266,13 +266,13 @@ _e_processmgr_visible_window_info_get(const Eldbus_Service_Interface *iface EINA
    Eldbus_Message *reply = NULL;
    Eina_Bool ret;
 
-   ELOGF("PROCESSMGR", "Get request - GetVisibleWinInfo", NULL, NULL);
+   ELOGF("PROCESSMGR", "Get request - GetVisibleWinInfo", NULL);
 
    reply = eldbus_message_method_return_new(msg);
    EINA_SAFETY_ON_NULL_RETURN_VAL(reply, NULL);
 
    ret = _msg_window_info_append(eldbus_message_iter_get(reply));
-   ELOGF("PROCESSMGR", "Reply result:%d", NULL, NULL, ret);
+   ELOGF("PROCESSMGR", "Reply result:%d", NULL, ret);
 
    return reply;
 }
@@ -285,7 +285,7 @@ _e_processmgr_focus_pid_get(const Eldbus_Service_Interface *iface EINA_UNUSED, c
    int pid = -1;
    Eina_Bool ret;
 
-   ELOGF("PROCESSMGR", "Get request - GetFocusProc", NULL, NULL);
+   ELOGF("PROCESSMGR", "Get request - GetFocusProc", NULL);
 
    reply = eldbus_message_method_return_new(msg);
    EINA_SAFETY_ON_NULL_RETURN_VAL(reply, NULL);
@@ -295,7 +295,7 @@ _e_processmgr_focus_pid_get(const Eldbus_Service_Interface *iface EINA_UNUSED, c
      pid = _process_id_get(ec);
 
    ret = eldbus_message_arguments_append(reply, "i", pid);
-   ELOGF("PROCESSMGR", "Reply result:%d, pid:%d", NULL, NULL, ret, pid);
+   ELOGF("PROCESSMGR", "Reply result:%d, pid:%d", NULL, ret, pid);
 
    return reply;
 }