Reduce unnecessary logs 56/161856/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 28 Nov 2017 02:14:24 +0000 (11:14 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 28 Nov 2017 02:41:19 +0000 (11:41 +0900)
Change-Id: If6a3c161496997beb5fecfce0b73c101f830dafa
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
ism/extras/efl_panel/isf_panel_efl.cpp
ism/extras/wayland_immodule/wayland_imcontext.c
ism/modules/panelagent/ecoresocket/ecore_socket_panel_agent_module.cpp
ism/modules/panelagent/socketconfigserver/socket_config_server_panel_agent_module.cpp
ism/modules/panelagent/wayland/isf_wsc_control_ui.cpp
ism/modules/panelagent/wayland/wayland_panel_agent_module.cpp
ism/src/isf_info_manager.cpp
ism/src/isf_panel_agent_base.cpp

index f92a298..7afc599 100644 (file)
@@ -635,20 +635,18 @@ static void unregister_edbus_signal_handler (void)
 static int register_edbus_signal_handler (void)
 {
     int retry;
-    LOGD ("start register_edbus_signal_handler");
 
     retry = 0;
     while (e_dbus_init () == 0) {
         retry++;
         if (retry >= 10) {
-            LOGW ("retry fail");
             return -1;
         }
     }
 
     edbus_conn = e_dbus_bus_get (DBUS_BUS_SYSTEM);
     if (!edbus_conn) {
-        LOGW ("connection fail");
+        LOGW ("edbus connection fail");
         return -1;
     }
 
@@ -658,7 +656,7 @@ static int register_edbus_signal_handler (void)
         return -1;
     }
 
-    LOGD ("Success register");
+    LOGD ("Success edbus register");
 
     return 0;
 }
@@ -2154,7 +2152,6 @@ static void load_config (void)
  */
 static void config_reload_cb (const ConfigPointer &config)
 {
-    LOGD ("");
     SCIM_DEBUG_MAIN (3) << __FUNCTION__ << "...\n";
     /* load_config (); */
     _info_manager->reload_config ();
@@ -6168,7 +6165,7 @@ static Eina_Bool ise_check_pid_alive_timer(void *data)
 
 static void slot_register_helper(int id, const HelperInfo& info)
 {
-    LOGD ("");
+    LOGD ("app id : %s", info.uuid.c_str ());
     /* Do we need to check whether the pid of this helper is the one we are watching? */
     if (info.uuid.compare(_ise_check_pid_alive_uuid) == 0) {
         delete_ise_check_pid_alive_timer();
@@ -6779,7 +6776,6 @@ static void keyboard_mode_changed_cb (keynode_t *key, void* data)
 static void change_keyboard_mode (TOOLBAR_MODE_T mode)
 {
     SCIM_DEBUG_MAIN (3) << __FUNCTION__ << "...\n";
-    LOGD ("");
     uint32 option = 0;
     String uuid, name;
     bool _support_hw_keyboard_mode = false;
index 0b2f60f..8ce6871 100644 (file)
@@ -585,7 +585,7 @@ set_autocapital (Ecore_IMF_Context *ctx)
         uppercase = analyze_surrounding_text (ctx);
     }
 
-    SECURE_LOGD ("ctx : %p, auto capital : %d", ctx, uppercase);
+    LOGD ("ctx : %p, auto capital : %d", ctx, uppercase);
     wl_text_input_set_capital_mode (imcontext->text_input, uppercase);
 }
 
@@ -1687,23 +1687,23 @@ show_input_panel(Ecore_IMF_Context *ctx)
             wl_text_input_set_input_panel_position(imcontext->text_input,
                 imcontext->input_panel_position.x, imcontext->input_panel_position.y);
 
-    SECURE_LOGD ("ctx : %p, layout : %d, layout variation : %d", ctx,
-            layout, layout_variation);
-    SECURE_LOGD ("language : %d, cursor position : %d, input hint : %#x, bidi direction : %d",
-            ecore_imf_context_input_panel_language_get (ctx),
-            cursor_pos,
-            ecore_imf_context_input_hint_get (ctx),
-            imcontext->bidi_direction);
-    SECURE_LOGD ("return key type : %d, return key disabled : %d, autocapital type : %d",
-            ecore_imf_context_input_panel_return_key_type_get (ctx),
-            ecore_imf_context_input_panel_return_key_disabled_get (ctx),
-            ecore_imf_context_autocapital_type_get (ctx));
-    SECURE_LOGD ("client_window : %#x, password mode : %d, prediction_allow : %d",
-            (unsigned long int)ecore_imf_context_client_window_get (ctx),
-            (imcontext->content_hint & WL_TEXT_INPUT_CONTENT_HINT_SENSITIVE_DATA) ? 1 : 0,
-            ecore_imf_context_prediction_allow_get (ctx));
-    SECURE_LOGD ("mime_type : %s, input panel position x : %d, y : %d",
-        imcontext->mime_type, imcontext->input_panel_position.x, imcontext->input_panel_position.y);
+    LOGD ("ctx : %p, layout : %d, layout variation : %d, language : %d, cursor position : %d",
+           ctx, layout, layout_variation,
+           ecore_imf_context_input_panel_language_get (ctx),
+           cursor_pos);
+    LOGD ("input hint : %#x, bidi direction : %d, return key type : %d, return key disabled : %d, autocapital type : %d",
+           ecore_imf_context_input_hint_get (ctx),
+           imcontext->bidi_direction,
+           ecore_imf_context_input_panel_return_key_type_get (ctx),
+           ecore_imf_context_input_panel_return_key_disabled_get (ctx),
+           ecore_imf_context_autocapital_type_get (ctx));
+    LOGD ("client_window : %#x, password mode : %d, prediction_allow : %d, mime_type : %s, input panel position x : %d, y : %d",
+           (unsigned long int)ecore_imf_context_client_window_get (ctx),
+           (imcontext->content_hint & WL_TEXT_INPUT_CONTENT_HINT_SENSITIVE_DATA) ? 1 : 0,
+           ecore_imf_context_prediction_allow_get (ctx),
+           imcontext->mime_type,
+           imcontext->input_panel_position.x,
+           imcontext->input_panel_position.y);
 
     if (_active_context_canvas && !evas_focus_state_get (_active_context_canvas)) {
         LOGW ("Canvas does not have focus!");
index 53c8d25..73c926c 100644 (file)
@@ -132,7 +132,6 @@ public:
     }
 
     bool initialize(InfoManager* info_manager, const String& display, bool resident) {
-        LOGD ("");
         m_info_manager = info_manager;
         m_socket_address = scim_get_default_panel_socket_address(display);
 
@@ -154,7 +153,6 @@ public:
 
     void stop(void) {
         SCIM_DEBUG_MAIN(1) << "PanelAgent::stop ()\n";
-        LOGD ("");
         lock();
         m_should_exit = true;
         unlock();
@@ -1595,8 +1593,6 @@ private:
     }
 
     void set_autocapital_type(int client, uint32 context, String uuid, int mode) {
-        LOGD ("client id:%d", client);
-
         m_send_trans.clear();
         m_send_trans.put_command(SCIM_TRANS_CMD_REPLY);
 
@@ -1610,8 +1606,6 @@ private:
     }
 
     void remote_update_preedit_string (int client, uint32 target_context, const WideString str, const WideString commit, const AttributeList &attrs, uint32 caret) {
-        LOGD("client id:%d", client);
-
         Socket client_socket(client);
         lock();
         m_send_trans.clear();
@@ -1627,8 +1621,6 @@ private:
     }
 
     void remote_send_key_event (int client, uint32 target_context, const KeyEvent &key) {
-        LOGD("client id:%d", client);
-
         Socket client_socket(client);
         lock();
         m_send_trans.clear ();
@@ -1641,8 +1633,6 @@ private:
     }
 
     void remote_forward_key_event (int client, uint32 target_context, const KeyEvent &key) {
-        LOGD("client id:%d", client);
-
         Socket client_socket(client);
         lock();
         m_send_trans.clear ();
@@ -2505,8 +2495,6 @@ private:
             socket_transaction_start();
 
             while (m_recv_trans.get_command(cmd)) {
-                LOGD ("PanelAgent::cmd = %d", cmd);
-
                 if (cmd == SCIM_TRANS_CMD_PANEL_REGISTER_HELPER) {
                     HelperInfo info;
 
@@ -2528,8 +2516,6 @@ private:
             socket_transaction_start();
 
             while (m_recv_trans.get_command(cmd)) {
-                LOGD ("PanelAgent::cmd = %d", cmd);
-
                 if (cmd == SCIM_TRANS_CMD_PANEL_REGISTER_ACTIVE_HELPER) {
                     HelperInfo info;
 
@@ -3216,7 +3202,6 @@ private:
         } else if (client_info.type == REMOTEINPUT_ACT_CLIENT) {
             socket_transaction_start();
             while (m_recv_trans.get_command(cmd)) {
-                LOGD ("PanelAgent::cmd = %d", cmd);
                 if (cmd == ISM_REMOTE_TRANS_CMD_SEND_INPUT_MESSAGE) {
                     char*   buf = NULL;
                     size_t  len;
index 089c9b5..b8cb007 100644 (file)
@@ -279,8 +279,6 @@ private:
         {
             socket_transaction_start ();
             while (m_recv_trans.get_command (cmd)) {
-                LOGD ("PanelAgent::cmd = %d", cmd);
-
                 if (cmd == SCIM_TRANS_CMD_FLUSH_CONFIG) {
                     if (m_config_readonly) {
                         LOGW ("sorry config readonly");
index 12f9c1c..7c55a3b 100644 (file)
@@ -165,12 +165,9 @@ void isf_wsc_context_input_panel_show (WSCContextISF* wsc_ctx)
 
     iseContext.bidi_direction = wsc_context_bidi_direction_get (wsc_ctx);
 
-    LOGD ("ctx : %p, layout : %d, layout variation : %d", wsc_ctx, iseContext.layout, iseContext.layout_variation);
-    LOGD ("language : %d, cursor position : %d, caps mode : %d", iseContext.language, iseContext.cursor_pos, iseContext.caps_mode);
-    LOGD ("return_key_type : %d, return_key_disabled : %d, autocapital type : %d", iseContext.return_key_type, iseContext.return_key_disabled, iseContext.autocapital_type);
-    LOGD ("password mode : %d, prediction_allow : %d", iseContext.password_mode, iseContext.prediction_allow);
-    LOGD ("input hint : %#x", iseContext.input_hint);
-    LOGD ("bidi direction : %d", iseContext.bidi_direction);
+    LOGD ("ctx : %p, layout : %d, layout variation : %d, language : %d, cursor position : %d", wsc_ctx, iseContext.layout, iseContext.layout_variation, iseContext.language, iseContext.cursor_pos);
+    LOGD ("caps mode : %d, return_key_type : %d, return_key_disabled : %d, autocapital type : %d", iseContext.caps_mode, iseContext.return_key_type, iseContext.return_key_disabled, iseContext.autocapital_type);
+    LOGD ("password mode : %d, prediction_allow : %d, input hint : %#x, bidi direction : %d", iseContext.password_mode, iseContext.prediction_allow, iseContext.input_hint, iseContext.bidi_direction);
 
     int mime_type_size = strlen (mime_types);
     if (mime_type_size > 0) {
index 1b33eaa..50cb648 100644 (file)
@@ -1331,8 +1331,6 @@ void
 isf_wsc_context_focus_in (WSCContextISF *wsc_ctx)
 {
     WSCContextISF* context_scim = wsc_ctx;
-    LOGD ("");
-
     if (!context_scim)
         return;
 
@@ -1383,7 +1381,7 @@ isf_wsc_context_focus_in (WSCContextISF *wsc_ctx)
             if (context_scim->impl->imdata)
                 context_scim->impl->si->set_imdata ((const char*)context_scim->impl->imdata, context_scim->impl->imdata_size);
             #endif
-            LOGD ("set autocapital type : %d", context_scim->impl->autocapital_type);
+            LOGD ("set autocapital type : %d, ctx : %p", context_scim->impl->autocapital_type, wsc_ctx);
             g_info_manager->set_autocapital_type ((int)context_scim->impl->autocapital_type);
         } else {
             g_info_manager->socket_turn_off ();
@@ -1399,15 +1397,12 @@ isf_wsc_context_focus_in (WSCContextISF *wsc_ctx)
         context_scim->impl->block_input_resource = false;
         context_scim->impl->input_resource = INPUT_RESOURCE_NONE;
     }
-
-    LOGD ("ctx : %p", wsc_ctx);
 }
 
 void
 isf_wsc_context_focus_out (WSCContextISF *wsc_ctx)
 {
     WSCContextISF* context_scim = wsc_ctx;
-    LOGD ("");
 
     if (!context_scim) return;
 
@@ -1484,13 +1479,10 @@ void
 isf_wsc_context_autocapital_type_set (WSCContextISF* wsc_ctx, Ecore_IMF_Autocapital_Type autocapital_type)
 {
     SCIM_DEBUG_FRONTEND (1) << __FUNCTION__ << " = " << autocapital_type << "...\n";
-    LOGD ("autocapital_type: %d", autocapital_type);
     WSCContextISF* context_scim = wsc_ctx;
 
     if (context_scim && context_scim->impl && context_scim->impl->autocapital_type != autocapital_type) {
         context_scim->impl->autocapital_type = autocapital_type;
-        LOGD ("ctx : %p. set autocapital type : %d", wsc_ctx, autocapital_type);
-
         if (context_scim == _focused_ic) {
             LOGD ("ctx : %p. set autocapital type : %d", wsc_ctx, autocapital_type);
             g_info_manager->set_autocapital_type ((int)autocapital_type);
@@ -1788,7 +1780,6 @@ isf_wsc_context_filter_key_event (WSCContextISF* wsc_ctx,
 static void
 wsc_commit_preedit (WSCContextISF* wsc_ctx)
 {
-    LOGD ("");
     char* surrounding_text;
 
     if (!wsc_ctx || !wsc_ctx->preedit_str ||
@@ -1843,8 +1834,6 @@ wsc_commit_preedit (WSCContextISF* wsc_ctx)
 static void
 wsc_send_preedit_style (WSCContextISF* wsc_ctx)
 {
-    LOGD ("");
-
     if (!wsc_ctx) return;
     if (wsc_ctx->impl && wsc_ctx->impl->is_on) {
         String mbs = utf8_wcstombs (wsc_ctx->impl->preedit_string);
@@ -2261,8 +2250,6 @@ Ecore_IMF_Input_Hints wsc_context_input_hint_get (WSCContextISF *wsc_ctx)
 
 Eina_Bool wsc_context_prediction_allow_get (WSCContextISF *wsc_ctx)
 {
-    LOGD ("");
-
     if (!wsc_ctx)
         return EINA_FALSE;
 
@@ -2289,8 +2276,6 @@ void wsc_context_delete_surrounding (WSCContextISF *wsc_ctx, int offset, int len
 
 void wsc_context_set_selection (WSCContextISF *wsc_ctx, int start, int end)
 {
-    LOGD ("");
-
     if (!wsc_ctx)
         return;
 
@@ -2299,8 +2284,6 @@ void wsc_context_set_selection (WSCContextISF *wsc_ctx, int start, int end)
 
 void wsc_context_commit_string (WSCContextISF *wsc_ctx, const char *str)
 {
-    LOGD ("");
-
     if (!wsc_ctx)
         return;
 
@@ -2315,7 +2298,6 @@ void wsc_context_commit_string (WSCContextISF *wsc_ctx, const char *str)
 
 void wsc_context_commit_preedit_string (WSCContextISF *wsc_ctx)
 {
-    LOGD ("");
     char* preedit_str = NULL;
     int cursor_pos = 0;
 
@@ -2335,7 +2317,6 @@ void wsc_context_commit_preedit_string (WSCContextISF *wsc_ctx)
 
 void wsc_context_send_preedit_string (WSCContextISF *wsc_ctx)
 {
-    LOGD ("");
     char* preedit_str = NULL;
     int cursor_pos = 0;
 
@@ -2355,8 +2336,6 @@ void wsc_context_send_preedit_string (WSCContextISF *wsc_ctx)
 
 void wsc_context_send_key (WSCContextISF *wsc_ctx, uint32_t keysym, uint32_t modifiers, uint32_t time, bool press)
 {
-    LOGD ("");
-
     if (!wsc_ctx || !wsc_ctx->im_ctx)
         return;
 
@@ -2368,7 +2347,6 @@ static void
 set_ic_capabilities (WSCContextISF *ic)
 {
     SCIM_DEBUG_FRONTEND (1) << __FUNCTION__ << "...\n";
-    LOGD ("");
 #if 0 //FIXME
     if (ic && ic->impl) {
         unsigned int cap = SCIM_CLIENT_CAP_ALL_CAPABILITIES;
@@ -2429,8 +2407,6 @@ static bool
 filter_keys (const char *keyname, const char *config_path)
 {
     SCIM_DEBUG_FRONTEND (1) << __FUNCTION__ << "...\n";
-    LOGD ("");
-
     if (!keyname)
         return false;
 
@@ -2450,7 +2426,6 @@ static void
 panel_initialize (void)
 {
     SCIM_DEBUG_FRONTEND (1) << __FUNCTION__ << "...\n";
-    LOGD ("");
     String display_name;
     {
         const char *p = getenv ("DISPLAY");
@@ -3252,7 +3227,6 @@ public:
             return ECORE_CALLBACK_RENEW;
 
         WSCContextISF* wsc_ctx = (WSCContextISF*)data;
-        LOGD("");
         int fd = ecore_main_fd_handler_fd_get (fd_handler);
         if (fd < 0)
             return ECORE_CALLBACK_RENEW;
index fcf9e75..f1d1528 100644 (file)
@@ -452,7 +452,6 @@ public:
 
     void stop (void) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::stop ()\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT) {
             String helper_uuid = get_current_helper_uuid ();
@@ -492,7 +491,6 @@ public:
     }
 
     void update_panel_event (int cmd, uint32 nType, uint32 nValue) {
-        LOGD ("");
         int    focused_client;
         uint32 focused_context;
         get_focused_context (focused_client, focused_context);
@@ -525,7 +523,6 @@ public:
 
     bool move_preedit_caret (uint32 position) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::move_preedit_caret (" << position << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -573,7 +570,6 @@ public:
 
     //ISM_TRANS_CMD_PANEL_RESET_KEYBOARD_ISE
     bool reset_keyboard_ise (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (1) << "InfoManager::reset_keyboard_ise ()\n";
         int    client = -1;
         uint32 context = 0;
@@ -589,7 +585,6 @@ public:
     }
 
     bool update_keyboard_ise_list (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (1) << "InfoManager::update_keyboard_ise_list ()\n";
         int    client = -1;
         uint32 context = 0;
@@ -606,7 +601,6 @@ public:
 
     bool change_factory (const String&  uuid) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::change_factory (" << uuid << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
 #if 0
@@ -626,7 +620,6 @@ public:
 
     bool helper_candidate_show (void) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
         bool ret = false;
 
         int    client;
@@ -654,7 +647,6 @@ public:
 
     bool helper_candidate_hide (void) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
         bool ret = false;
 
         int    client;
@@ -682,7 +674,6 @@ public:
 
     bool candidate_more_window_show (void) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
         int    client;
         uint32 context;
         get_focused_context (client, context);
@@ -709,7 +700,6 @@ public:
 
     bool candidate_more_window_hide (void) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
         int    client;
         uint32 context;
         get_focused_context (client, context);
@@ -736,7 +726,6 @@ public:
 
     bool update_helper_lookup_table (const LookupTable& table) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
         int    client;
         uint32 context;
 
@@ -757,7 +746,6 @@ public:
 
     bool select_aux (uint32 item) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::select_aux (" << item << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -777,7 +765,6 @@ public:
 
     bool select_candidate (uint32 item) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::select_candidate (" << item << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -797,7 +784,6 @@ public:
 
     bool lookup_table_page_up (void) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::lookup_table_page_up ()\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -817,7 +803,6 @@ public:
 
     bool lookup_table_page_down (void) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::lookup_table_page_down ()\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -837,7 +822,6 @@ public:
 
     bool update_lookup_table_page_size (uint32 size) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::update_lookup_table_page_size (" << size << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -857,7 +841,6 @@ public:
 
     bool update_candidate_item_layout (const std::vector<uint32>& row_items) {
         SCIM_DEBUG_MAIN (1) << __func__ << " (" << row_items.size () << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -877,7 +860,6 @@ public:
 
     bool select_associate (uint32 item) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::select_associate (" << item << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -894,7 +876,6 @@ public:
 
     bool associate_table_page_up (void) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::associate_table_page_up ()\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -911,7 +892,6 @@ public:
 
     bool associate_table_page_down (void) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::associate_table_page_down ()\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -928,7 +908,6 @@ public:
 
     bool update_associate_table_page_size (uint32 size) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::update_associate_table_page_size (" << size << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -945,7 +924,6 @@ public:
 
     bool update_displayed_candidate_number (uint32 size) {
         SCIM_DEBUG_MAIN (1) << __func__ << " (" << size << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -965,7 +943,6 @@ public:
 
     void send_longpress_event (int type, int index) {
         SCIM_DEBUG_MAIN (1) << __func__ << " (" << type << ", " << index << ")\n";
-        LOGD ("");
         int    client;
         uint32 context;
         get_focused_context (client, context);
@@ -981,7 +958,6 @@ public:
 
     bool trigger_property (const String&  property) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::trigger_property (" << property << ")\n";
-        LOGD ("");
         int client;
         uint32 context;
         lock ();
@@ -1077,7 +1053,6 @@ public:
         if (it != m_helper_client_index.end ()) {
             Socket client_socket (it->second.id);
             m_panel_agent_manager.show_helper (it->second.id, ctx, uuid, data, len);
-            LOGD ("Send ISM_TRANS_CMD_SHOW_ISE_PANEL message");
             return true;
         }
 
@@ -1087,7 +1062,6 @@ public:
 
     void hide_helper (const String& uuid, uint32 ctx = 0) {
         HelperClientIndex::iterator it = m_helper_client_index.find (m_current_helper_uuid);
-        LOGD ("");
 
         if (it != m_helper_client_index.end ()) {
             int client;
@@ -1099,7 +1073,6 @@ public:
             }
 
             m_panel_agent_manager.hide_helper (it->second.id, ctx, uuid);
-            LOGD ("Send ISM_TRANS_CMD_HIDE_ISE_PANEL message");
         }
     }
 
@@ -1302,7 +1275,6 @@ public:
             uint32 ctx;
             get_focused_context (client, context);
             ctx = get_helper_ic (client, context);
-            LOGD ("Send ISM_TRANS_CMD_SHOW_ISE_OPTION_WINDOW message");
 
             if (!m_signal_launch_option_application (uuid)) {
                 LOGD ("call show helper option");
@@ -1324,7 +1296,6 @@ public:
             uint32 ctx;
             get_focused_context (client, context);
             ctx = get_helper_ic (client, context);
-            LOGD ("Send ISM_TRANS_CMD_RESUME_ISE_OPTION_WINDOW message");
             m_panel_agent_manager.resume_helper_option_window (it->second.id, ctx, uuid);
             return true;
         }
@@ -1341,7 +1312,6 @@ public:
             uint32 ctx;
             get_focused_context (client, context);
             ctx = get_helper_ic (client, context);
-            LOGD ("Send ISM_TRANS_CMD_SET_KEYBOARD_MODE message");
             m_panel_agent_manager.set_helper_keyboard_mode (it->second.id, ctx, uuid, mode);
             return true;
         }
@@ -1358,7 +1328,6 @@ public:
             uint32 ctx;
             get_focused_context (client, context);
             ctx = get_helper_ic (client, context);
-            LOGD ("Send ISM_TRANS_CMD_SET_PREDICTION_HINT message");
             m_panel_agent_manager.set_helper_prediction_hint (it->second.id, ctx, uuid, prediction_hint);
             return true;
         }
@@ -1375,7 +1344,6 @@ public:
             uint32 ctx;
             get_focused_context (client, context);
             ctx = get_helper_ic (client, context);
-            LOGD ("Send ISM_TRANS_CMD_SET_MIME_TYPE message");
             m_panel_agent_manager.set_helper_mime_type (it->second.id, ctx, uuid, mime_type);
             return true;
         }
@@ -1392,7 +1360,6 @@ public:
             uint32 ctx;
             get_focused_context (client, context);
             ctx = get_helper_ic (client, context);
-            LOGD ("Send ISM_TRANS_CMD_FINALIZE_CONTENT message");
             m_panel_agent_manager.finalize_content_helper (it->second.id, ctx, uuid, text, cursor_pos);
             return true;
         }
@@ -1402,7 +1369,6 @@ public:
 
     //ISM_TRANS_CMD_SHOW_ISF_CONTROL
     void show_isf_panel (int client_id) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::show_isf_panel ()\n";
         m_signal_show_panel ();
     }
@@ -1428,7 +1394,6 @@ public:
 
     //ISM_TRANS_CMD_HIDE_ISF_CONTROL
     void hide_isf_panel (int client_id) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::hide_isf_panel ()\n";
         m_signal_hide_panel ();
     }
@@ -1436,7 +1401,6 @@ public:
     //ISM_TRANS_CMD_SHOW_ISE_PANEL
     void show_ise_panel (int client_id, uint32 client, uint32 context, char*   data, size_t  len) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::show_ise_panel ()\n";
-        LOGD ("");
         String initial_uuid = scim_global_config_read (String (SCIM_GLOBAL_CONFIG_INITIAL_ISE_UUID), String (""));
         String default_uuid = scim_global_config_read (String (SCIM_GLOBAL_CONFIG_DEFAULT_ISE_UUID), String (""));
         LOGD ("prepare to show ISE %d [%s] [%s]", client_id, initial_uuid.c_str (), default_uuid.c_str ());
@@ -1504,19 +1468,16 @@ public:
     }
 
     void set_default_ise (const DEFAULT_ISE_T& ise) {
-        LOGD ("");
+        LOGD ("set default ise : %s", ise.uuid.c_str());
         scim_global_config_write (String (SCIM_GLOBAL_CONFIG_DEFAULT_ISE_UUID), ise.uuid);
         scim_global_config_flush ();
     }
 
     void set_should_shared_ise (const bool should_shared_ise) {
-        LOGD ("");
         m_should_shared_ise = should_shared_ise;
     }
     //SCIM_TRANS_CMD_PROCESS_KEY_EVENT
     bool process_key_event (KeyEvent& key, uint32 serial) {
-        LOGD ("");
-
         HelperClientIndex::iterator it = m_helper_client_index.find (m_current_helper_uuid);
 
         if (it != m_helper_client_index.end ()) {
@@ -1597,19 +1558,16 @@ public:
     //ISM_TRANS_CMD_GET_ACTIVE_ISE_GEOMETRY
     void get_input_panel_geometry (int client_id, _OUT_ struct rectinfo& info) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
         m_signal_get_input_panel_geometry (info);
     }
     //ISM_TRANS_CMD_GET_CANDIDATE_GEOMETRY
     void get_candidate_window_geometry (int client_id, _OUT_ struct rectinfo& info) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
         m_signal_get_candidate_geometry (info);
     }
     //ISM_TRANS_CMD_GET_ISE_LANGUAGE_LOCALE
     void get_ise_language_locale (int client_id, _OUT_ char** data, _OUT_ size_t& len) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT) {
             HelperClientIndex::iterator it = m_helper_client_index.find (m_current_helper_uuid);
 
@@ -1624,7 +1582,6 @@ public:
     }
 
     void get_current_ise_geometry (rectinfo& rect) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << __func__ << " \n";
         bool           ret  = false;
 
@@ -1641,7 +1598,6 @@ public:
 
     void set_ise_mode (int client_id, uint32 mode) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_ise_mode ()\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_mode (m_current_helper_uuid, mode);
@@ -1649,7 +1605,6 @@ public:
     //ISM_TRANS_CMD_SET_LAYOUT
     void set_ise_layout (int client_id, uint32 layout) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_ise_layout ()\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_layout (m_current_helper_uuid, layout);
@@ -1657,7 +1612,6 @@ public:
     //ISM_TRANS_CMD_SET_INPUT_MODE
     void set_ise_input_mode (int client_id, uint32 input_mode) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_ise_input_mode ()\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_input_mode (m_current_helper_uuid, input_mode);
@@ -1665,14 +1619,12 @@ public:
     //ISM_TRANS_CMD_SET_INPUT_HINT
     void set_ise_input_hint (int client_id, uint32 input_hint) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_ise_input_hint ()\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_input_hint (m_current_helper_uuid, input_hint);
     }
     //ISM_TRANS_CMD_UPDATE_BIDI_DIRECTION
     void update_ise_bidi_direction (int client_id, uint32 bidi_direction) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::update_ise_bidi_direction ()\n";
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
@@ -1681,7 +1633,6 @@ public:
     //ISM_TRANS_CMD_SET_ISE_LANGUAGE
     void set_ise_language (int client_id, uint32 language) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_ise_language ()\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_language (m_current_helper_uuid, language);
@@ -1689,7 +1640,6 @@ public:
     //ISM_TRANS_CMD_SET_ISE_IMDATA
     void set_ise_imdata (int client_id, const char*   imdata, size_t  len) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_ise_imdata ()\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_imdata (m_current_helper_uuid, imdata, len);
@@ -1698,7 +1648,6 @@ public:
     bool get_ise_imdata (int client_id, _OUT_ char** imdata, _OUT_ size_t& len) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::get_ise_imdata ()\n";
         bool    ret    = false;
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             ret = get_helper_imdata (m_current_helper_uuid, imdata, len);
@@ -1709,7 +1658,6 @@ public:
     bool get_ise_layout (int client_id, _OUT_ uint32& layout) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::get_ise_layout ()\n";
         bool   ret = false;
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             ret = get_helper_layout (m_current_helper_uuid, layout);
@@ -1719,25 +1667,21 @@ public:
     //ISM_TRANS_CMD_GET_ISE_STATE
     void get_ise_state (int client_id, _OUT_ int& state) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
         m_signal_get_ise_state (state);
     }
     //ISM_TRANS_CMD_GET_ACTIVE_ISE
     void get_active_ise (int client_id, _OUT_ String& default_uuid) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
         default_uuid = scim_global_config_read (String (SCIM_GLOBAL_CONFIG_DEFAULT_ISE_UUID), String (""));
     }
     //ISM_TRANS_CMD_GET_ISE_LIST
     void get_ise_list (int client_id, _OUT_ std::vector<String>& strlist) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::get_ise_list ()\n";
         m_signal_get_ise_list (strlist);
     }
     //ISM_TRANS_CMD_GET_ALL_HELPER_ISE_INFO
     void get_all_helper_ise_info (int client_id, _OUT_ HELPER_ISE_INFO& info) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::get_all_helper_ise_info ()\n";
-        LOGD ("");
         m_signal_get_all_helper_ise_info (info);
 
         //1 Check if the current IME's option (setting) is available or not.
@@ -1775,7 +1719,6 @@ public:
     //ISM_TRANS_CMD_SET_ENABLE_HELPER_ISE_INFO
     //reply SCIM_TRANS_CMD_FAIL or SCIM_TRANS_CMD_OK
     void set_enable_helper_ise_info (int client_id, String appid, uint32 is_enabled) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_enable_helper_ise_info ()\n";
         m_signal_set_enable_helper_ise_info (appid, static_cast<bool> (is_enabled));
     }
@@ -1783,21 +1726,18 @@ public:
     //reply SCIM_TRANS_CMD_FAIL or SCIM_TRANS_CMD_OK
     void show_helper_ise_list (int client_id) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::show_helper_ise_list ()\n";
-        LOGD ("");
         m_signal_show_helper_ise_list ();
     }
     //ISM_TRANS_CMD_SHOW_HELPER_ISE_SELECTOR
     //reply SCIM_TRANS_CMD_FAIL or SCIM_TRANS_CMD_OK
     void show_helper_ise_selector (int client_id) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::show_helper_ise_selector ()\n";
-        LOGD ("");
         m_signal_show_helper_ise_selector ();
     }
     //ISM_TRANS_CMD_IS_HELPER_ISE_ENABLED
     //reply
     void is_helper_ise_enabled (int client_id, String strAppid, _OUT_ uint32& nEnabled) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
         int _nEnabled = 0;
         m_signal_is_helper_ise_enabled (strAppid, _nEnabled);
         nEnabled = (uint32)_nEnabled;
@@ -1806,7 +1746,6 @@ public:
     void get_ise_information (int client_id, String strUuid, _OUT_ String& strName, _OUT_ String& strLanguage,
                               _OUT_ int& nType, _OUT_ int& nOption, _OUT_ String& strModuleName) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
         m_signal_get_ise_information (strUuid, strName, strLanguage, nType, nOption, strModuleName);
     }
     /*
@@ -1832,7 +1771,6 @@ public:
     //reply SCIM_TRANS_CMD_OK
     bool reset_ise_option (int client_id) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::resect_ise_option ()\n";
-        LOGD ("");
         int    client = -1;
         uint32 context;
         lock ();
@@ -1864,7 +1802,6 @@ public:
     //reply
     bool set_active_ise_by_uuid (int client_id, char*  buf, size_t  len) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_active_ise_by_uuid ()\n";
-        LOGD ("");
 
         if (buf == NULL) {
             return false;
@@ -1897,7 +1834,6 @@ public:
     //reply SCIM_TRANS_CMD_FAIL or SCIM_TRANS_CMD_OK
     void set_initial_ise_by_uuid (int client_id, char*  buf, size_t  len) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_initial_ise_by_uuid ()\n";
-        LOGD ("");
 
         if (buf == NULL) {
             return;
@@ -1910,7 +1846,6 @@ public:
     //ISM_TRANS_CMD_SET_RETURN_KEY_TYPE
     void set_ise_return_key_type (int client_id, uint32 type) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_return_key_type (m_current_helper_uuid, type);
@@ -1920,7 +1855,6 @@ public:
     bool get_ise_return_key_type (int client_id, _OUT_ uint32& type) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
         bool   ret  = false;
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             ret = get_helper_return_key_type (m_current_helper_uuid, type);
@@ -1930,7 +1864,6 @@ public:
     //ISM_TRANS_CMD_SET_RETURN_KEY_DISABLE
     void set_ise_return_key_disable (int client_id, uint32 disabled) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_return_key_disable (m_current_helper_uuid, disabled);
@@ -1938,7 +1871,6 @@ public:
     //ISM_TRANS_CMD_GET_RETURN_KEY_DISABLE
     void get_ise_return_key_disable (int client_id, _OUT_ uint32& disabled) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             get_helper_return_key_disable (m_current_helper_uuid, disabled);
@@ -1968,7 +1900,6 @@ public:
     //ISM_TRANS_CMD_SET_CAPS_MODE
     void set_ise_caps_mode (int client_id, uint32 mode) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_ise_caps_mode ()\n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_caps_mode (m_current_helper_uuid, mode);
@@ -1977,7 +1908,6 @@ public:
     //SCIM_TRANS_CMD_RELOAD_CONFIG
     void reload_config (void) {
         SCIM_DEBUG_MAIN (1) << "InfoManager::reload_config ()\n";
-        LOGD ("");
         lock ();
 
         for (ClientRepository::iterator it = m_client_repository.begin (); it != m_client_repository.end (); ++it) {
@@ -2009,19 +1939,16 @@ public:
     //ISM_TRANS_CMD_SEND_WILL_SHOW_ACK
     void will_show_ack (int client_id) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::will_show_ack ()\n";
-        LOGD ("");
         m_signal_will_show_ack ();
     }
     //ISM_TRANS_CMD_SEND_WILL_HIDE_ACK
     void will_hide_ack (int client_id) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::will_hide_ack ()\n";
-        LOGD ("");
         m_signal_will_hide_ack ();
     }
     //ISM_TRANS_CMD_RESET_DEFAULT_ISE
     void reset_default_ise (int client_id) {
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
-        LOGD ("");
         String initial_ise = scim_global_config_read (String (SCIM_GLOBAL_CONFIG_INITIAL_ISE_UUID), String (""));
 
         if (initial_ise.length () > 0)
@@ -2031,7 +1958,6 @@ public:
     }
     //ISM_TRANS_CMD_SET_HARDWARE_KEYBOARD_MODE
     void set_keyboard_mode (int client_id, uint32 mode) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_keyboard_mode ()\n";
         m_signal_set_keyboard_mode (mode);
         set_ise_keyboard_mode (client_id, mode);
@@ -2039,20 +1965,17 @@ public:
     //ISM_TRANS_CMD_SEND_CANDIDATE_WILL_HIDE_ACK
     void candidate_will_hide_ack (int client_id) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "\n";
-        LOGD ("");
         m_signal_candidate_will_hide_ack ();
     }
 
     //ISM_TRANS_CMD_GET_ACTIVE_HELPER_OPTION
     void get_active_helper_option (int client_id, _OUT_ uint32& option) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << __func__ << "\n";
         option = get_current_helper_option ();
     }
     //ISM_TRANS_CMD_SHOW_ISE_OPTION_WINDOW
     void show_ise_option_window (int client_id) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::show_ise_option_window ()\n";
-        LOGD ("");
         String initial_uuid = scim_global_config_read (String (SCIM_GLOBAL_CONFIG_INITIAL_ISE_UUID), String (""));
         String default_uuid = scim_global_config_read (String (SCIM_GLOBAL_CONFIG_DEFAULT_ISE_UUID), String (""));
         LOGD ("prepare to show ISE option window %d [%s] [%s]", client_id, initial_uuid.c_str (), default_uuid.c_str ());
@@ -2065,7 +1988,6 @@ public:
     //ISM_TRANS_CMD_RESUME_ISE_OPTION_WINDOW
     void resume_ise_option_window (int client_id) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::resume_ise_option_window ()\n";
-        LOGD ("");
         String initial_uuid = scim_global_config_read (String (SCIM_GLOBAL_CONFIG_INITIAL_ISE_UUID), String (""));
         String default_uuid = scim_global_config_read (String (SCIM_GLOBAL_CONFIG_DEFAULT_ISE_UUID), String (""));
         LOGD ("prepare to resume ISE option window %d [%s] [%s]", client_id, initial_uuid.c_str (), default_uuid.c_str ());
@@ -2078,7 +2000,6 @@ public:
     //ISM_TRANS_CMD_SET_KEYBOARD_MODE
     void set_ise_keyboard_mode (int client_id, uint32 mode) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_ise_keyboard_mode ()\n";
-        LOGD ("");
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_keyboard_mode (m_current_helper_uuid, mode);
     }
@@ -2086,7 +2007,6 @@ public:
     //ISM_TRANS_CMD_SET_PREDICTION_HINT
     void set_prediction_hint (int client_id, String prediction_hint) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_prediction_hint ()\n";
-        LOGD ("");
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_prediction_hint (m_current_helper_uuid, prediction_hint);
     }
@@ -2094,7 +2014,6 @@ public:
     //ISM_TRANS_CMD_SET_MIME_TYPE
     void set_ise_mime_type (int client_id, String mime_type) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::set_mime_type ()\n";
-        LOGD ("");
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             set_helper_mime_type (m_current_helper_uuid, mime_type);
     }
@@ -2102,7 +2021,6 @@ public:
     //ISM_TRANS_CMD_FINALIZE_CONTENT
     void finalize_content (int client_id, String text, uint32 cursor_pos) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::finalize_content ()\n";
-        LOGD ("");
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             finalize_content_helper (m_current_helper_uuid, text, cursor_pos);
     }
@@ -2564,18 +2482,15 @@ public:
 
     //ISM_TRANS_CMD_REGISTER_PANEL_CLIENT
     void register_panel_client (uint32 client_id, uint32 id) {
-        LOGD ("");
         m_panel_client_map [client_id] = (int)id;
     }
     //SCIM_TRANS_CMD_PANEL_REGISTER_INPUT_CONTEXT
     void register_input_context (uint32 client_id, uint32 context, String  uuid) {
-        LOGD ("");
         uint32 ctx = get_helper_ic (m_panel_client_map[client_id], context);
         m_client_context_uuids [ctx] = uuid;
     }
     //SCIM_TRANS_CMD_PANEL_REMOVE_INPUT_CONTEXT
     void remove_input_context (uint32 client_id, uint32 context) {
-        LOGD ("");
         uint32 ctx = get_helper_ic (m_panel_client_map[client_id], context);
         m_client_context_uuids.erase (ctx);
 
@@ -2609,7 +2524,6 @@ public:
     //SCIM_TRANS_CMD_PANEL_RESET_INPUT_CONTEXT
     void socket_reset_input_context (int client_id, uint32 context) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_reset_input_context \n";
-        LOGD ("");
 
         if (TOOLBAR_HELPER_MODE == m_current_toolbar_mode || m_current_helper_option & ISM_HELPER_PROCESS_KEYBOARD_KEYEVENT)
             socket_reset_helper_input_context (m_current_helper_uuid, m_panel_client_map[client_id], context);
@@ -2617,7 +2531,6 @@ public:
 
     //SCIM_TRANS_CMD_FOCUS_IN
     void focus_in (int client_id, uint32 context,  String  uuid) {
-        LOGD ("");
         m_signal_focus_in ();
         focus_in_helper (m_current_helper_uuid, m_panel_client_map[client_id], context);
         SCIM_DEBUG_MAIN (2) << "PanelAgent::focus_in (" << client_id << "," << context << "," << uuid << ")\n";
@@ -2638,7 +2551,6 @@ public:
 
     //SCIM_TRANS_CMD_FOCUS_OUT
     void focus_out (int client_id, uint32 context) {
-        LOGD ("");
         m_signal_focus_out ();
         lock ();
         focus_out_helper (m_current_helper_uuid, m_panel_client_map[client_id], context);
@@ -2657,8 +2569,6 @@ public:
 
     //ISM_TRANS_CMD_TURN_ON_LOG
     void socket_turn_on_log (uint32 isOn) {
-        LOGD ("");
-
         if (isOn) {
             DebugOutput::enable_debug (SCIM_DEBUG_AllMask);
             DebugOutput::set_verbose_level (7);
@@ -2742,7 +2652,6 @@ public:
         }
 #endif
         unlock ();
-        LOGD ("id:%d type:%d", client_id, client_info.type);
 
         if (client_info.type == FRONTEND_CLIENT) {
             SCIM_DEBUG_MAIN (4) << "It's a FrontEnd client.\n";
@@ -2977,19 +2886,16 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_PANEL_TURN_ON
     void socket_turn_on (void) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_turn_on ()\n";
-        LOGD ("");
         m_signal_turn_on ();
     }
     //SCIM_TRANS_CMD_PANEL_TURN_OFF
     void socket_turn_off (void) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_turn_off ()\n";
-        LOGD ("");
         m_signal_turn_off ();
     }
     //SCIM_TRANS_CMD_UPDATE_SCREEN
     void socket_update_screen (int client_id, uint32 num) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_screen ()\n";
-        LOGD ("");
 
         if (((int) num) != m_current_screen) {
             SCIM_DEBUG_MAIN (4) << "New Screen number = " << num << "\n";
@@ -3001,7 +2907,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_UPDATE_SPOT_LOCATION
     void socket_update_spot_location (uint32 x, uint32 y, uint32 top_y) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_spot_location ()\n";
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "New Spot location x=" << x << " y=" << y << "\n";
         m_signal_update_spot_location ((int)x, (int)y, (int)top_y);
         helper_all_update_spot_location ((int)x, (int)y);
@@ -3009,14 +2914,12 @@ client context helpers: %d, helpers uuid count: %d",
     //ISM_TRANS_CMD_UPDATE_CURSOR_POSITION
     void socket_update_cursor_position (uint32 cursor_pos) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_cursor_position ()\n";
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "New cursor position pos=" << cursor_pos << "\n";
         helper_all_update_cursor_position ((int)cursor_pos);
     }
     //ISM_TRANS_CMD_UPDATE_SURROUNDING_TEXT
     void socket_update_surrounding_text (String text, uint32 cursor) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
         HelperClientIndex::iterator it = m_helper_client_index.find (m_current_helper_uuid);
 
         if (it != m_helper_client_index.end ()) {
@@ -3033,7 +2936,6 @@ client context helpers: %d, helpers uuid count: %d",
 
     void remoteinput_callback_focus_in () {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
 
         for (unsigned int i = 0; i < m_current_recv_remoteinput_id.size (); i++) {
             lock();
@@ -3044,7 +2946,6 @@ client context helpers: %d, helpers uuid count: %d",
 
     void remoteinput_callback_focus_out () {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
 
         for (unsigned int i = 0; i < m_current_recv_remoteinput_id.size (); i++) {
             lock();
@@ -3055,7 +2956,6 @@ client context helpers: %d, helpers uuid count: %d",
 
     void remoteinput_callback_entry_metadata (uint32 hint, uint32 layout, int variation, uint32 autocapital_type, int return_key_disabled) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
 
         for (unsigned int i = 0; i < m_current_recv_remoteinput_id.size (); i++) {
             lock();
@@ -3066,7 +2966,6 @@ client context helpers: %d, helpers uuid count: %d",
 
     void remoteinput_callback_surrounding_text (String text, uint32 cursor) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
 
         for (unsigned int i = 0; i < m_current_recv_remoteinput_id.size (); i++) {
             lock();
@@ -3077,7 +2976,6 @@ client context helpers: %d, helpers uuid count: %d",
 
     void remoteinput_callback_input_resource (uint32 input_resource) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
 
         for (unsigned int i = 0; i < m_current_recv_remoteinput_id.size (); i++) {
             lock();
@@ -3089,7 +2987,6 @@ client context helpers: %d, helpers uuid count: %d",
     //ISM_TRANS_CMD_UPDATE_SELECTION
     void socket_update_selection (String text) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << "...\n";
-        LOGD ("");
         HelperClientIndex::iterator it = m_helper_client_index.find (m_current_helper_uuid);
 
         if (it != m_helper_client_index.end ()) {
@@ -3106,7 +3003,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_PANEL_UPDATE_FACTORY_INFO
     void socket_update_factory_info (PanelFactoryInfo& info) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_factory_info ()\n";
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "New Factory info uuid=" << info.uuid << " name=" << info.name << "\n";
         info.lang = scim_get_normalized_language (info.lang);
         m_signal_update_factory_info (info);
@@ -3114,13 +3010,11 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_PANEL_SHOW_HELP
     void socket_show_help (String help) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_show_help ()\n";
-        LOGD ("");
         m_signal_show_help (help);
     }
     //SCIM_TRANS_CMD_PANEL_SHOW_FACTORY_MENU
     void socket_show_factory_menu (std::vector <PanelFactoryInfo>& vec) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_show_factory_menu ()\n";
-        LOGD ("");
 
         if (vec.size ())
             m_signal_show_factory_menu (vec);
@@ -3128,81 +3022,68 @@ client context helpers: %d, helpers uuid count: %d",
 
     //SCIM_TRANS_CMD_SHOW_PREEDIT_STRING
     void socket_show_preedit_string (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_show_preedit_string ()\n";
         m_signal_show_preedit_string ();
     }
     //SCIM_TRANS_CMD_SHOW_AUX_STRING
     void socket_show_aux_string (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_show_aux_string ()\n";
         m_signal_show_aux_string ();
     }
     //SCIM_TRANS_CMD_SHOW_LOOKUP_TABLE
     void socket_show_lookup_table (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_show_lookup_table ()\n";
         m_signal_show_lookup_table ();
     }
     //ISM_TRANS_CMD_SHOW_ASSOCIATE_TABLE
     void socket_show_associate_table (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_show_associate_table ()\n";
         m_signal_show_associate_table ();
     }
     //SCIM_TRANS_CMD_HIDE_PREEDIT_STRING
     void socket_hide_preedit_string (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_hide_preedit_string ()\n";
         m_signal_hide_preedit_string ();
     }
     //SCIM_TRANS_CMD_HIDE_AUX_STRING
     void socket_hide_aux_string (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_hide_aux_string ()\n";
         m_signal_hide_aux_string ();
     }
     //SCIM_TRANS_CMD_HIDE_LOOKUP_TABLE
     void socket_hide_lookup_table (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_hide_lookup_table ()\n";
         m_signal_hide_lookup_table ();
     }
     //ISM_TRANS_CMD_HIDE_ASSOCIATE_TABLE
     void socket_hide_associate_table (void) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_hide_associate_table ()\n";
         m_signal_hide_associate_table ();
     }
     //SCIM_TRANS_CMD_UPDATE_PREEDIT_STRING
     void socket_update_preedit_string (String& str, const AttributeList& attrs, uint32 caret) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_preedit_string ()\n";
-        LOGD ("");
         m_signal_update_preedit_string (str, attrs, (int) caret);
     }
     //SCIM_TRANS_CMD_UPDATE_PREEDIT_CARET
     void socket_update_preedit_caret (uint32 caret) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_preedit_caret ()\n";
-        LOGD ("");
         m_signal_update_preedit_caret ((int) caret);
     }
     //ISM_TRANS_CMD_RECAPTURE_STRING
     void socket_recapture_string (int offset, int len, String& preedit, String& commit, const AttributeList& attrs) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_preedit_caret ()\n";
-        LOGD ("");
         m_signal_recapture_string (offset, len, preedit, commit, attrs);
     }
     //SCIM_TRANS_CMD_UPDATE_AUX_STRING
     void socket_update_aux_string (String& str, const AttributeList& attrs) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_aux_string ()\n";
-        LOGD ("");
         m_signal_update_aux_string (str, attrs);
         m_is_imengine_aux = true;
     }
     //SCIM_TRANS_CMD_UPDATE_LOOKUP_TABLE
     void socket_update_lookup_table (const LookupTable& table) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_lookup_table ()\n";
-        LOGD ("");
         //FIXME:
         //g_isf_candidate_table = _isf_candidate_table;
         m_signal_update_lookup_table (table);
@@ -3211,7 +3092,6 @@ client context helpers: %d, helpers uuid count: %d",
     //ISM_TRANS_CMD_UPDATE_ASSOCIATE_TABLE
     void socket_update_associate_table (const LookupTable& table) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_associate_table ()\n";
-        LOGD ("");
         m_signal_update_associate_table (table);
     }
 
@@ -3231,19 +3111,16 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_REGISTER_PROPERTIES
     void socket_register_properties (const PropertyList& properties) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_register_properties ()\n";
-        LOGD ("");
         m_signal_register_properties (properties);
     }
     //SCIM_TRANS_CMD_UPDATE_PROPERTY
     void socket_update_property (const Property& property) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_update_property ()\n";
-        LOGD ("");
         m_signal_update_property (property);
     }
     //ISM_TRANS_CMD_GET_KEYBOARD_ISE_LIST
     void socket_get_keyboard_ise_list (String& uuid) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_get_keyboard_ise_list ()\n";
-        LOGD ("");
         std::vector<String> list;
         list.clear ();
         m_signal_get_keyboard_ise_list (list);
@@ -3260,12 +3137,10 @@ client context helpers: %d, helpers uuid count: %d",
     //ISM_TRANS_CMD_SET_CANDIDATE_UI
     void socket_set_candidate_ui (uint32 portrait_line, uint32 mode) {
         SCIM_DEBUG_MAIN (4) << __func__ << " \n";
-        LOGD ("");
         m_signal_set_candidate_ui (portrait_line, mode);
     }
     //ISM_TRANS_CMD_GET_CANDIDATE_UI
     void socket_get_candidate_ui (String uuid) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_get_candidate_ui ()\n";
         int style = 0, mode = 0;
         m_signal_get_candidate_ui (style, mode);
@@ -3281,14 +3156,12 @@ client context helpers: %d, helpers uuid count: %d",
     }
     //ISM_TRANS_CMD_SET_CANDIDATE_POSITION
     void socket_set_candidate_position (uint32 left, uint32 top) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_set_candidate_position ()\n";
         m_signal_set_candidate_position (left, top);
     }
     //ISM_TRANS_CMD_HIDE_CANDIDATE
     void socket_hide_candidate (void) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_hide_candidate ()\n";
-        LOGD ("");
         m_signal_hide_preedit_string ();
         m_signal_hide_aux_string ();
         m_signal_hide_lookup_table ();
@@ -3296,7 +3169,6 @@ client context helpers: %d, helpers uuid count: %d",
     }
     //ISM_TRANS_CMD_GET_CANDIDATE_GEOMETRY
     void socket_get_candidate_geometry (String& uuid) {
-        LOGD ("");
         SCIM_DEBUG_MAIN (4) << __func__ << " \n";
         HelperClientIndex::iterator it = m_helper_client_index.find (uuid);
 
@@ -3345,7 +3217,6 @@ client context helpers: %d, helpers uuid count: %d",
     //ISM_TRANS_CMD_GET_KEYBOARD_ISE
     void socket_get_keyboard_ise (String uuid) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_get_keyboard_ise ()\n";
-        LOGD ("");
         String ise_name, ise_uuid;
         int    client  = -1;
         uint32 context = 0;
@@ -3369,7 +3240,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_START_HELPER
     void socket_start_helper (int client_id, uint32 context, String uuid) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_start_helper ()\n";
-        LOGD ("");
         HelperClientIndex::iterator it = m_helper_client_index.find (uuid);
         lock ();
         uint32 ic = get_helper_ic (m_panel_client_map[client_id], context);
@@ -3403,7 +3273,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_STOP_HELPER
     void socket_stop_helper (int client_id, uint32 context, String uuid) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_stop_helper ()\n";
-        LOGD ("");
         HelperClientIndex::iterator it = m_helper_client_index.find (uuid);
         lock ();
         uint32 ic = get_helper_ic (m_panel_client_map[client_id], context);
@@ -3437,7 +3306,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_SEND_HELPER_EVENT
     void socket_send_helper_event (int client_id, uint32 context, String uuid, const Transaction& _nest_trans) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_send_helper_event ()\n";
-        LOGD ("");
         HelperClientIndex::iterator it = m_helper_client_index.find (uuid);
 
         if (it != m_helper_client_index.end ()) {
@@ -3463,7 +3331,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_REGISTER_PROPERTIES
     void socket_helper_register_properties (int client, PropertyList& properties) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_register_properties (" << client << ")\n";
-        LOGD ("");
         m_signal_register_helper_properties (client, properties);
 
 #if 0 //why? remove if useless, infinite loop
@@ -3497,13 +3364,11 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_UPDATE_PROPERTY
     void socket_helper_update_property (int client, Property& property) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_update_property (" << client << ")\n";
-        LOGD ("");
         m_signal_update_helper_property (client, property);
     }
     //SCIM_TRANS_CMD_PANEL_SEND_IMENGINE_EVENT
     void socket_helper_send_imengine_event (int client, uint32 target_ic, String target_uuid , Transaction& nest_trans) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_send_imengine_event (" << client << ")\n";
-        LOGD ("");
         HelperInfoRepository::iterator hiit = m_helper_active_info_repository.find (client);
 
         if (hiit != m_helper_active_info_repository.end ()) {
@@ -3578,20 +3443,17 @@ client context helpers: %d, helpers uuid count: %d",
     void socket_helper_send_key_event (int client, uint32 target_ic, String target_uuid, KeyEvent key) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_send_key_event (" << client << ")\n";
         ISF_PROF_DEBUG ("first message")
-        LOGD ("");
         socket_helper_key_event_op (client, SCIM_TRANS_CMD_PROCESS_KEY_EVENT, target_ic, target_uuid, key);
     }
     //SCIM_TRANS_CMD_FORWARD_KEY_EVENT
     void socket_helper_forward_key_event (int client, uint32 target_ic, String target_uuid, KeyEvent key) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_forward_key_event (" << client << ")\n";
-        LOGD ("");
         socket_helper_key_event_op (client, SCIM_TRANS_CMD_FORWARD_KEY_EVENT, target_ic, target_uuid, key);
     }
 
     //SCIM_TRANS_CMD_COMMIT_STRING
     void socket_helper_commit_string (int client, uint32 target_ic, String target_uuid, WideString wstr) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_commit_string (" << client << ")\n";
-        LOGD ("");
 
         if (wstr.length ()) {
             int     target_client;
@@ -3626,7 +3488,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_GET_SURROUNDING_TEXT
     void socket_helper_get_surrounding_text (int client, String uuid, uint32 maxlen_before, uint32 maxlen_after) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << " (" << client << ")\n";
-        LOGD ("");
         int     focused_client;
         uint32  focused_context;
         get_focused_context (focused_client, focused_context);
@@ -3645,7 +3506,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_DELETE_SURROUNDING_TEXT
     void socket_helper_delete_surrounding_text (int client, uint32 offset, uint32 len) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << " (" << client << ")\n";
-        LOGD ("");
         int     focused_client;
         uint32  focused_context;
         get_focused_context (focused_client, focused_context);
@@ -3658,7 +3518,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_GET_SELECTION
     void socket_helper_get_selection (int client, String uuid) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << " (" << client << ")\n";
-        LOGD ("");
         int     focused_client;
         uint32  focused_context;
         get_focused_context (focused_client, focused_context);
@@ -3671,7 +3530,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_SET_SELECTION
     void socket_helper_set_selection (int client, uint32 start, uint32 end) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << " (" << client << ")\n";
-        LOGD ("");
         int     focused_client;
         uint32  focused_context;
         get_focused_context (focused_client, focused_context);
@@ -3685,7 +3543,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_SHOW_PREEDIT_STRING
     void socket_helper_show_preedit_string (int client, uint32 target_ic, String target_uuid) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_show_preedit_string (" << client << ")\n";
-        LOGD ("");
         int     target_client;
         uint32  target_context;
         get_imengine_client_context (target_ic, target_client, target_context);
@@ -3714,7 +3571,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_HIDE_PREEDIT_STRING
     void socket_helper_hide_preedit_string (int client, uint32 target_ic, String target_uuid) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_hide_preedit_string (" << client << ")\n";
-        LOGD ("");
         int     target_client;
         uint32  target_context;
         get_imengine_client_context (target_ic, target_client, target_context);
@@ -3743,7 +3599,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_UPDATE_PREEDIT_STRING
     void socket_helper_update_preedit_string (int client, uint32 target_ic, String target_uuid, WideString preedit, WideString commit, AttributeList& attrs, uint32 caret) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_update_preedit_string (" << client << ")\n";
-        LOGD ("");
         int     target_client;
         uint32  target_context;
         get_imengine_client_context (target_ic, target_client, target_context);
@@ -3773,7 +3628,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_UPDATE_PREEDIT_CARET
     void socket_helper_update_preedit_caret (int client, uint32 caret) {
         SCIM_DEBUG_MAIN (4) << __func__ << " (" << client << ")\n";
-        LOGD ("");
         int     focused_client;
         uint32  focused_context;
         String  focused_uuid;
@@ -3821,7 +3675,6 @@ client context helpers: %d, helpers uuid count: %d",
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_register_helper (" << client << ")\n";
         bool result = false;
         lock ();
-        LOGD ("");
         String language;
         int type;
         int option;
@@ -3868,7 +3721,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_PANEL_REGISTER_ACTIVE_HELPER
     void socket_helper_register_helper_passive (int client, HelperInfo& info) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_register_helper_passive (" << client << ")\n";
-        LOGD ("");
         lock ();
         String language;
         int type;
@@ -3908,7 +3760,6 @@ client context helpers: %d, helpers uuid count: %d",
     //ISM_TRANS_CMD_UPDATE_ISE_INPUT_CONTEXT
     void socket_helper_update_input_context (int client, uint32 type, uint32 value) {
         SCIM_DEBUG_MAIN (4) << "InfoManager::socket_helper_update_input_context (" << client << ")\n";
-        LOGD ("");
         m_signal_update_input_context ((int)type, (int)value);
         int    focused_client;
         uint32 focused_context;
@@ -3924,7 +3775,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_SEND_PRIVATE_COMMAND
     void socket_helper_send_private_command (int client, String command) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << " (" << client << ")\n";
-        LOGD ("");
         int     focused_client;
         uint32  focused_context;
         get_focused_context (focused_client, focused_context);
@@ -3937,7 +3787,6 @@ client context helpers: %d, helpers uuid count: %d",
     //SCIM_TRANS_CMD_COMMIT_CONTENT
     void socket_helper_commit_content (int client, String content, String description, String mime_types) {
         SCIM_DEBUG_MAIN (4) << __FUNCTION__ << " (" << client << ")\n";
-        LOGD ("");
         int     focused_client;
         uint32  focused_context;
         get_focused_context (focused_client, focused_context);
@@ -3965,7 +3814,6 @@ client context helpers: %d, helpers uuid count: %d",
     //}
 
     void process_key_event_done (KeyEvent &key, uint32 ret, uint32 serial) {
-        LOGD ("");
         int     focused_client;
         uint32  focused_context;
         get_focused_context (focused_client, focused_context);
@@ -3978,7 +3826,6 @@ client context helpers: %d, helpers uuid count: %d",
 
     //ISM_TRANS_CMD_REQUEST_ISE_HIDE
     void request_ise_hide () {
-        LOGD("");
         int     focused_client;
         uint32  focused_context;
         get_focused_context (focused_client, focused_context);
index ab0d842..26393f7 100644 (file)
@@ -71,68 +71,55 @@ PanelAgentBase::~PanelAgentBase ()
 
 bool PanelAgentBase::initialize (InfoManager* info_manager, const String& display, bool resident)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
     return false;
 }
 
 bool PanelAgentBase::valid (void) const
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
     return false;
 }
 
 void PanelAgentBase::stop (void)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
-
 void PanelAgentBase::update_panel_event (int client,  uint32 context, int cmd, uint32 nType, uint32 nValue)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::reset_keyboard_ise (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::update_keyboard_ise_list (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::change_factory (int client, uint32 context, const String&  uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::helper_candidate_show (int client, uint32 context, const String&  uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::helper_candidate_hide (int client, uint32 context, const String&  uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 /* if the uuid is empty, it must send to panelclient otherwise HelperAgent
  */
 void PanelAgentBase::candidate_more_window_show (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 /* if the uuid is empty, it must send to panelclient otherwise HelperAgent
  */
 void PanelAgentBase::candidate_more_window_hide (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::update_helper_lookup_table (int client, uint32 context, const String&  uuid, const LookupTable& table)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 //select_aux
@@ -141,408 +128,330 @@ void PanelAgentBase::update_helper_lookup_table (int client, uint32 context, con
 //this function called by two places, will send message to help(with uuid) or app
 void PanelAgentBase::select_aux (int client, uint32 context, uint32 item)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //SCIM_TRANS_CMD_SELECT_CANDIDATE
 //this function called by two places, will send message to help(with uuid) or app
 void PanelAgentBase::select_candidate (int client, uint32 context, uint32 item)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::lookup_table_page_up (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::lookup_table_page_down (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::update_lookup_table_page_size (int client, uint32 context, uint32 size)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::update_candidate_item_layout (int client, uint32 context, const std::vector<uint32>& row_items)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::select_associate (int client, uint32 context, uint32 item)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::associate_table_page_up (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::associate_table_page_down (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::update_associate_table_page_size (int client, uint32 context, uint32 size)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::update_displayed_candidate_number (int client, uint32 context, uint32 size)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::send_longpress_event (int client, uint32 context, uint32 index)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::trigger_property (int client, uint32 context, const String&  property)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_start_helper (int client, uint32 context, const String& ic_uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
-
 void PanelAgentBase::exit (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::focus_out_helper (int client, uint32 context, const String& uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::focus_in_helper (int client, uint32 context, const String& uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::show_helper (int client, uint32 context, const String& uuid, char* data, size_t& len)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::hide_helper (int client, uint32 context, const String& uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_mode (int client, uint32 context, const String& uuid, uint32& mode)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_language (int client, uint32 context, const String& uuid, uint32& language)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_imdata (int client, uint32 context, const String& uuid, const char* imdata, size_t& len)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_return_key_type (int client, uint32 context, const String& uuid, uint32 type)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::get_helper_return_key_type (int client, uint32 context, const String& uuid, _OUT_ uint32& type)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_return_key_disable (int client, uint32 context, const String& uuid, uint32 disabled)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::get_helper_return_key_disable (int client, uint32 context, const String& uuid, _OUT_ uint32& disabled)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_layout (int client, uint32 context, const String& uuid, uint32& layout)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_input_mode (int client, uint32 context, const String& uuid, uint32& mode)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_input_hint (int client, uint32 context, const String& uuid, uint32& hint)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_bidi_direction (int client, uint32 context, const String& uuid, uint32& direction)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_caps_mode (int client, uint32 context, const String& uuid, uint32& mode)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::show_helper_option_window (int client, uint32 context, const String& uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::resume_helper_option_window (int client, uint32 context, const String& uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_keyboard_mode (int client, uint32 context, const String& uuid, uint32& mode)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_prediction_hint (int client, uint32 context, const String& uuid, String& prediction_hint)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::set_helper_mime_type (int client, uint32 context, const String& uuid, String& mime_type)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::finalize_content_helper (int client, uint32 context, const String& uuid, String& text, uint32& cursor_pos)
 {
-    LOGW("not implemented for %s", m_name.c_str());
 }
 
 bool PanelAgentBase::process_key_event (int client, uint32 context, const String& uuid, KeyEvent& key, uint32 serial)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
     return false;
 }
 
 bool PanelAgentBase::get_helper_geometry (int client, uint32 context, String& uuid, _OUT_ struct rectinfo& info)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
     return false;
 }
 
 void PanelAgentBase::get_helper_imdata (int client, uint32 context, String& uuid, _OUT_ char** imdata, _OUT_ size_t& len)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::get_helper_layout (int client, uint32 context, String& uuid, uint32& layout)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
-
 void PanelAgentBase::get_ise_language_locale (int client, uint32 context, String& uuid, _OUT_ char** data, _OUT_ size_t& len)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::check_option_window (int client, uint32 context, String& uuid, _OUT_ uint32& avail)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::reset_ise_option (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::reset_helper_context (int client, uint32 context, const String& uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::reload_config (int client)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_update_surrounding_text (int client, uint32 context, const String& uuid, String& text, uint32 cursor)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_remoteinput_focus_in (int client)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_remoteinput_focus_out (int client)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_remoteinput_entry_metadata (int client, uint32 hint, uint32 layout, int variation, uint32 autocapital_type, int return_key_disabled)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_remoteinput_surrounding_text (int client, String& text, uint32 cursor)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_remoteinput_input_resource (int client, uint32 input_resource)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_update_selection (int client, uint32 context, String& uuid, String text)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_get_keyboard_ise_list (int client, uint32 context, const String& uuid, std::vector<String>& list)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_get_candidate_ui (int client, uint32 context, const String& uuid,  int style,  int mode)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_get_candidate_geometry (int client, uint32 context, const String& uuid, struct rectinfo& info)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
+
 void PanelAgentBase::socket_get_keyboard_ise (int client, uint32 context, const String& uuid, String& ise_name, String& ise_uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::helper_detach_input_context (int client, uint32 context, const String& ic_uuid)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::helper_process_imengine_event (int client, uint32 context, const String& ic_uuid, const Transaction& nest_transaction)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::process_helper_event (int client, uint32 context, String target_uuid, String active_uuid, Transaction& nest_trans)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::socket_helper_key_event (int client, uint32 context, int cmd , KeyEvent& key)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 //SCIM_TRANS_CMD_GET_SURROUNDING_TEXT
 //socket_helper_get_surrounding_text
 void PanelAgentBase::socket_helper_get_surrounding_text (int client, uint32 context, uint32 maxlen_before, uint32 maxlen_after)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //SCIM_TRANS_CMD_DELETE_SURROUNDING_TEXT
 //socket_helper_delete_surrounding_text
 void PanelAgentBase::socket_helper_delete_surrounding_text (int client, uint32 context, uint32 offset, uint32 len)
 {
-    LOGD ("not implemented ");
 }
 //SCIM_TRANS_CMD_GET_SELECTION
 void PanelAgentBase::socket_helper_get_selection (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //SCIM_TRANS_CMD_SET_SELECTION
 void PanelAgentBase::socket_helper_set_selection (int client, uint32 context, uint32 start, uint32 end)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 //socket_helper_update_input_context
 //ISM_TRANS_CMD_UPDATE_ISE_INPUT_CONTEXT
 void PanelAgentBase::update_ise_input_context (int client, uint32 context, uint32 type, uint32 value)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 //socket_helper_send_private_command
 //SCIM_TRANS_CMD_SEND_PRIVATE_COMMAND
 void PanelAgentBase::send_private_command (int client, uint32 context, const String& command)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 //socket_helper_commit_content
 //SCIM_TRANS_CMD_COMMIT_CONTENT
 void PanelAgentBase::commit_content (int client, uint32 context, const String& content, const String& description, const String& mime_types)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 //SCIM_TRANS_CMD_UPDATE_SPOT_LOCATION
 void PanelAgentBase::helper_all_update_spot_location (int client, uint32 context, String uuid, int x, int y)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //ISM_TRANS_CMD_UPDATE_CURSOR_POSITION
 void PanelAgentBase::helper_all_update_cursor_position (int client, uint32 context, String uuid, int cursor_pos)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //SCIM_TRANS_CMD_UPDATE_SCREEN
 void PanelAgentBase::helper_all_update_screen (int client, uint32 context, String uuid, int screen)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 //socket_helper_commit_string
 //SCIM_TRANS_CMD_COMMIT_STRING
 void PanelAgentBase::commit_string (int client, uint32 context, const WideString& wstr)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //socket_helper_show_preedit_string
 //SCIM_TRANS_CMD_SHOW_PREEDIT_STRING
 void PanelAgentBase::show_preedit_string (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //socket_helper_hide_preedit_string
 //SCIM_TRANS_CMD_HIDE_PREEDIT_STRING
 void PanelAgentBase::hide_preedit_string (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //socket_helper_update_preedit_string
 //SCIM_TRANS_CMD_UPDATE_PREEDIT_STRING
 void PanelAgentBase::update_preedit_string (int client, uint32 context, WideString preedit, WideString commit, AttributeList& attrs, uint32 caret)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //socket_helper_update_preedit_caret
 //SCIM_TRANS_CMD_UPDATE_PREEDIT_CARET
 void PanelAgentBase::update_preedit_caret (int client, uint32 context, uint32 caret)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //socket_helper_recapture_string
 //ISM_TRANS_CMD_RECAPTURE_STRING
 void PanelAgentBase::recapture_string (int client, uint32 context, int offset, int len, WideString preedit, WideString commit, AttributeList& attrs)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 //socket_helper_register_helper
 //SCIM_TRANS_CMD_HELPER_ATTACH_INPUT_CONTEXT
@@ -550,73 +459,59 @@ void PanelAgentBase::recapture_string (int client, uint32 context, int offset, i
 void PanelAgentBase::helper_attach_input_context_and_update_screen (int client, std::vector < std::pair <uint32, String> >& helper_ic_index,
         uint32 current_screen)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::hide_helper_ise (int client, uint32 context)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 bool PanelAgentBase::process_input_device_event(int client, uint32 context, const String& uuid, uint32 type, const char *data, size_t len, _OUT_ uint32& result)
 {
-    LOGW("not implemented for %s", m_name.c_str());
     return false;
 }
 
 void PanelAgentBase::process_key_event_done(int client, uint32 context, KeyEvent &key, uint32 ret, uint32 serial)
 {
-    LOGW("not implemented for %s", m_name.c_str());
 }
 
 void PanelAgentBase::request_ise_hide(int client, uint32 context)
 {
-    LOGW("not implemented for %s", m_name.c_str());
 }
 
 void PanelAgentBase::set_autocapital_type(int client, uint32 context, String uuid, int mode)
 {
-    LOGW("not implemented for %s", m_name.c_str());
 }
 
 void PanelAgentBase::update_ise_geometry (int client, uint32 context, uint32 x, uint32 y, uint32 width, uint32 height)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::remote_update_preedit_string (int client, uint32 context, const WideString str, const WideString commit, const AttributeList &attrs, uint32 caret)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::remote_send_key_event (int client, uint32 context, const KeyEvent &key)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::remote_forward_key_event (int client, uint32 context, const KeyEvent &key)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::remote_commit_string (int client, uint32 context, const WideString& wstr)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::remote_delete_surrounding_text (int client, uint32 context, uint32 offset, uint32 len)
 {
-    LOGD ("not implemented ");
 }
 
 void PanelAgentBase::set_prediction_allow (int client, uint32 context, String uuid, int mode)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 
 void PanelAgentBase::send_fail_reply (int client)
 {
-    LOGW ("not implemented for %s", m_name.c_str ());
 }
 } /* namespace scim */