fixup! tizenaudio-publish: publish only built-in devices 74/241974/1 accepted/tizen/unified/20200824.134513 submit/tizen/20200821.074009 submit/tizen/20200824.023231
authorSeungbae Shin <seungbae.shin@samsung.com>
Fri, 21 Aug 2020 07:31:03 +0000 (16:31 +0900)
committerSeungbae Shin <seungbae.shin@samsung.com>
Fri, 21 Aug 2020 07:32:19 +0000 (16:32 +0900)
adjust log level for ignoring publish

[Version] 13.0.30
[Issue Type] Update

Change-Id: I0476c340de9b4bffc13bf9734bd837fd5f169f92

packaging/pulseaudio-modules-tizen.spec
src/module-tizenaudio-publish.c

index 04850b6..bc64475 100644 (file)
@@ -1,6 +1,6 @@
 Name:             pulseaudio-modules-tizen
 Summary:          Pulseaudio modules for Tizen
-Version:          13.0.29
+Version:          13.0.30
 Release:          0
 Group:            Multimedia/Audio
 License:          LGPL-2.1+
index cdead84..0fb0602 100644 (file)
@@ -340,7 +340,7 @@ static bool shall_ignore(pa_object *o) {
 
     if (pa_sink_isinstance(o)) {
         if (!is_builtin_device(PA_SINK(o)->proplist)) {
-            pa_log_error("sink [%s] is not an internal, skip this", PA_SINK(o)->name);
+            pa_log_info("ignore : sink [%s] is not an internal", PA_SINK(o)->name);
             return true;
         }
         return !!(PA_SINK(o)->flags & PA_SINK_NETWORK);
@@ -348,7 +348,7 @@ static bool shall_ignore(pa_object *o) {
 
     if (pa_source_isinstance(o)) {
         if (!is_builtin_device(PA_SOURCE(o)->proplist)) {
-            pa_log_error("source [%s] is not an internal, skip this", PA_SOURCE(o)->name);
+            pa_log_info("ignore : source [%s] is not an internal", PA_SOURCE(o)->name);
             return true;
         }
         return PA_SOURCE(o)->monitor_of || (PA_SOURCE(o)->flags & PA_SOURCE_NETWORK);