aboutsummaryrefslogtreecommitdiff
path: root/src/volume-warning.vala
diff options
context:
space:
mode:
authorcharles kerr <charlesk@canonical.com>2015-12-28 15:45:08 -0600
committercharles kerr <charlesk@canonical.com>2015-12-28 15:45:08 -0600
commite63ae571f56a93fce240f20d224bd356aa18a28b (patch)
tree4465220996096de9db3c2a8a0fb0d4bd4099057e /src/volume-warning.vala
parent69f48f1cdf6e213088a4b295281b8e56bbbd622b (diff)
downloadayatana-indicator-sound-e63ae571f56a93fce240f20d224bd356aa18a28b.tar.gz
ayatana-indicator-sound-e63ae571f56a93fce240f20d224bd356aa18a28b.tar.bz2
ayatana-indicator-sound-e63ae571f56a93fce240f20d224bd356aa18a28b.zip
add testing tracers
Diffstat (limited to 'src/volume-warning.vala')
-rw-r--r--src/volume-warning.vala23
1 files changed, 7 insertions, 16 deletions
diff --git a/src/volume-warning.vala b/src/volume-warning.vala
index d4783f5..d2379a4 100644
--- a/src/volume-warning.vala
+++ b/src/volume-warning.vala
@@ -138,18 +138,7 @@ public class VolumeWarning : Object
if (i == null)
return;
- bool active = is_active_multimedia(i);
-
- if (active) {
- GLib.message("index %d", (int)i.index);
- GLib.message("name %s", i.name);
- GLib.message("sink %d", (int)i.sink);
- GLib.message("has_volume %d", (int)i.has_volume);
- GLib.message("volume %s", i.volume.to_string());
- GLib.message("driver %s", i.driver);
- }
-
- if (active) {
+ if (is_active_multimedia(i)) {
GLib.message("setting multimedia index to %d, volume to %d", (int)i.index, (int)i.volume.max());
_multimedia_sink_input_index = i.index;
_multimedia_cvolume = i.volume;
@@ -172,7 +161,7 @@ public class VolumeWarning : Object
private void pulse_update_sink_inputs()
{
- GLib.message("list_input_sinks");
+ GLib.message("--> list_input_sinks");
pulse_update_sink_inputs_cancel ();
@@ -183,21 +172,22 @@ public class VolumeWarning : Object
private void context_events_cb (Context c, Context.SubscriptionEventType t, uint32 index)
{
GLib.message("");
+
if ((t & Context.SubscriptionEventType.FACILITY_MASK) != Context.SubscriptionEventType.SINK_INPUT)
return;
switch (t & Context.SubscriptionEventType.TYPE_MASK)
{
case Context.SubscriptionEventType.NEW:
- GLib.message("Context.SubscriptionEventType.NEW");
+ GLib.message("-> Context.SubscriptionEventType.NEW");
pulse_update_sink_inputs();
break;
case Context.SubscriptionEventType.CHANGE:
- GLib.message("Context.SubscriptionEventType.CHANGE");
+ GLib.message("-> Context.SubscriptionEventType.CHANGE");
pulse_update_sink_inputs();
break;
case Context.SubscriptionEventType.REMOVE:
- GLib.message("Context.SubscriptionEventType.REMOVE");
+ GLib.message("-> Context.SubscriptionEventType.REMOVE");
pulse_update_sink_inputs();
break;
default:
@@ -465,6 +455,7 @@ public class VolumeWarning : Object
private void show() {
GLib.message("in show()");
preshow();
+ _ok_volume = multimedia_volume;
GLib.message("calling notification.show");
_notification.show();