summaryrefslogtreecommitdiff
path: root/src/sound.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound.c')
-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;
}