}
const char *getText = elm_entry_entry_get(entry);
- LOGD("button key clicked!! : getText = %s", getText);
+ SECURE_LOGD("button key clicked!! : getText = %s", getText);
char cursorPosition[512];
snprintf(cursorPosition, sizeof(cursorPosition), "%d", elm_entry_cursor_pos_get(entry));
reply = input_smartreply_get_nth_item(i, &type);
if (reply == NULL)
continue;
- PRINTFUNC(DLOG_DEBUG, "SmartReply = [%d]%s", i, reply);
+ SECURE_LOGD("SmartReply = [%d]%s", i, reply);
for (j = 0; j < template_list.size(); j++) {
const char *template_str;
elm_genlist_item_append(obj, &(style), (void *)(uintptr_t)index, NULL, ELM_GENLIST_ITEM_NONE, cb, udata)
#define VIRTUAL_TEXT_AREA_FONT_STYLE \
- "DEFAULT='font=Tizen:style=Regular font_size=32 color=#FFFFFF color_class=AT013 text_class=tizen wrap=mixed align=center' \
- newline='br' b='+ font=Tizen:style=Bold'link='+ underline=on underline_color=#FFFFFF'"
+ "DEFAULT = 'font = Tizen:style = Regular font_size = 32 color = #FFFFFF color_class = AT013 text_class = tizen wrap = mixed align = center' \
+ newline = 'br' b = '+ font = Tizen:style = Bold'link = '+ underline = on underline_color = #FFFFFF'"
#define TOP_PADDING_AREA 120
#define BOTTOM_PADDING_AREA 81 // Bottom Button H 78 + margin 3
strbuf = elm_entry_utf8_to_markup(keyValue);
- PRINTFUNC(DLOG_DEBUG, "text : %s, voicedata->partial_result=%s", strbuf, voicedata->partial_result);
+ SECURE_LOGD("text : %s, voicedata->partial_result=%s", strbuf, voicedata->partial_result);
if(strbuf){
if(voicedata->partial_result){ // partial_result is not Null so replace
result_text += " ";
}
- PRINTFUNC(DLOG_DEBUG, "result_text = %s", result_text.c_str());
+ SECURE_LOGD("result_text = %s", result_text.c_str());
char *filePath = NULL;
voice_recorder *vr = _voice_recorder_get_data();
static void set_guide_text(VoiceData *vd, const char* text, bool translatable)
{
- PRINTFUNC(DLOG_DEBUG, "text = %s", text);
+ SECURE_LOGD("text = %s", text);
if (!vd) return;
data.use_gettext = true;
data.text = (char *)sqlite3_column_text(stmt, 3);
- PRINTFUNC(DLOG_DEBUG, "db text %s", data.text.c_str());
+ SECURE_LOGD("db text %s", data.text.c_str());
g_input_template.template_list.push_back(data);
ret = sqlite3_step(stmt);