if (type == temp_cmd->type) {
*cmd_list = g_slist_append(*cmd_list, temp_cmd);
} else {
- SLOG(LOG_ERROR, vc_db_tag(), "[ERROR] Command type(%d) is NOT valid : request type(%d)", temp_cmd->type, type);
+ SLOG(LOG_WARN, vc_db_tag(), "[WARNING] Command type(%d) is NOT valid : request type(%d)", temp_cmd->type, type);
}
ret = sqlite3_step(stmt);
if (SQLITE_DONE == ret)
return ret;
}
} else {
- SLOG(LOG_ERROR, vc_db_tag(), "[ERROR] Command type(%d) is NOT valid : request type(%d)", temp_cmd->type, type);
+ SLOG(LOG_WARN, vc_db_tag(), "[WARNING] Command type(%d) is NOT valid : request type(%d)", temp_cmd->type, type);
}
iter = g_slist_next(iter);
}
int ret = -1;
g_buffer_count = 0;
- SLOG(LOG_ERROR, TAG_VCD, "[Recorder] Enter, recorder state(%d)", g_recorder_state);
+ SLOG(LOG_DEBUG, TAG_VCD, "[Recorder] Enter, recorder state(%d)", g_recorder_state);
if (VCD_RECORDER_STATE_RECORDING == g_recorder_state) return 0;
bool started = false;
- SLOG(LOG_ERROR, TAG_VCD, "[Recorder] audio type : %s", g_current_audio_type);
+ SLOG(LOG_DEBUG, TAG_VCD, "[Recorder] audio type : %s", g_current_audio_type);
if (NULL != g_current_audio_type) {
if (0 == strncmp(VCP_AUDIO_ID_BLUETOOTH, g_current_audio_type, strlen(VCP_AUDIO_ID_BLUETOOTH))) {
g_bt_extend_count = 0;
#endif
} else if (0 == strncmp(VCP_AUDIO_ID_MSF, g_current_audio_type, strlen(VCP_AUDIO_ID_MSF))) {
- SLOG(LOG_ERROR, TAG_VCD, "[Recorder] call RegisterMSFAudioCallback() function");
+ SLOG(LOG_DEBUG, TAG_VCD, "[Recorder] call RegisterMSFAudioCallback() function");
#ifdef TV_MSF_WIFI_MODE
ret = RegisterMSFAudioCallback(__msf_wifi_audio_data_receive_cb, NULL);
}
}
- SLOG(LOG_ERROR, TAG_VCD, "[Recorder] started = %d", started);
+ SLOG(LOG_DEBUG, TAG_VCD, "[Recorder] started = %d", started);
if (false == started) {
#if 0
ret = sound_manager_acquire_focus(g_stream_info_h, SOUND_STREAM_FOCUS_FOR_RECORDING, NULL);