From: taeyoung Date: Tue, 26 Jul 2016 02:22:14 +0000 (+0900) Subject: display: change printf to dlog_print X-Git-Tag: accepted/tizen/common/20160804.174407~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12abab31599ce549297531b8f70acc3d8dfb7581;p=platform%2Fcore%2Fapi%2Fdevice.git display: change printf to dlog_print - dlog is used for the logging system of the Tizen. Thus printf is changed to dlog Change-Id: I9587dbe98d6651c2650794984c5825069e54243a Signed-off-by: taeyoung --- diff --git a/include/display.h b/include/display.h index 7f369c7..d619a25 100755 --- a/include/display.h +++ b/include/display.h @@ -198,9 +198,9 @@ int device_display_get_state(display_state_e *state); * ... * result = device_display_change_state(DISPLAY_STATE_SCREEN_OFF); * if( result < 0 ) - * printf("[ERROR] return value result =%d, \n",result); + * dlog_print(DLOG_ERROR, LOG_TAG, "[ERROR] return value result =%d, \n",result); * else - * printf("[SUCCESS] return value result =%d \n",result); + * dlog_print(DLOG_DEBUG, LOG_TAG, "[SUCCESS] return value result =%d \n",result); * ... * @endcode */