summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpr.jung <pr.jung@samsung.com>2016-10-25 14:39:17 +0900
committerJung <pr.jung@samsung.com>2016-10-26 23:37:01 -0700
commitd7450b97c2b4bf4d3c2e1f038bdc3bd9857ff634 (patch)
treef1c545ef90fdde93e99f7c2bfd4acab61d807cff
parent5cab9090f7441250f6994012b93200eeb89cb9d5 (diff)
downloadlibsvi-d7450b97c2b4bf4d3c2e1f038bdc3bd9857ff634.tar.gz
libsvi-d7450b97c2b4bf4d3c2e1f038bdc3bd9857ff634.tar.bz2
libsvi-d7450b97c2b4bf4d3c2e1f038bdc3bd9857ff634.zip
Change-Id: Iebe62245e67efde435e1acf09b5776fab30b867b Signed-off-by: pr.jung <pr.jung@samsung.com>
-rw-r--r--src/sound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound.c b/src/sound.c
index 9d42f94..f2e107c 100644
--- a/src/sound.c
+++ b/src/sound.c
@@ -143,14 +143,14 @@ static int sound_play(feedback_pattern_e pattern)
if (sndstatus && profile->get_always_off_case &&
profile->get_always_off_case(FEEDBACK_TYPE_SOUND, pattern)) {
- _D("Sound always off condition"); //LCOV_EXCL_LINE
+ _D("Sound always off condition(pattern %s)", profile->str_pattern[pattern]); //LCOV_EXCL_LINE
return 0;
}
/* get sound file path */
path = get_data(pattern);
if (!path || stat(path, &buf)) {
- _E("Not supported sound pattern");
+ _E("Not supported sound pattern(path %s pattern %d)", path, pattern); //LCOV_EXCL_LINE
return -ENOTSUP;
}