Use security log 73/84173/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Wed, 17 Aug 2016 05:59:37 +0000 (14:59 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 17 Aug 2016 05:59:37 +0000 (14:59 +0900)
Change-Id: I18eaa25fa224327ba23a54795447536d05f8b2be

ism/extras/wayland_immodule/wayland_imcontext.c

index e342b46..cf925d2 100644 (file)
@@ -1396,7 +1396,7 @@ text_input_get_selection_text (void                 *data,
 
     ecore_imf_context_selection_get (imcontext->ctx, &selection);
     if (imcontext->text_input) {
-        LOGD ("selection :%s", selection ? selection : "");
+        SECURE_LOGD ("selection :%s", selection ? selection : "");
         if (selection) {
             char *_selection = selection;
             size_t len = strlen (selection);
@@ -1437,7 +1437,7 @@ text_input_get_surrounding_text (void                 *data,
 
     /* cursor_pos is a byte index */
     if (ecore_imf_context_surrounding_get (imcontext->ctx, &surrounding, &cursor_pos)) {
-        LOGD ("surrounding :%s, cursor: %d", surrounding ? surrounding : "", cursor_pos);
+        SECURE_LOGD ("surrounding : %s, cursor: %d", surrounding ? surrounding : "", cursor_pos);
         if (imcontext->text_input) {
             Eina_Unicode *wide_surrounding = eina_unicode_utf8_to_unicode (surrounding, NULL);
             size_t wlen = eina_unicode_strlen (wide_surrounding);