aboutsummaryrefslogtreecommitdiff
path: root/src/volume-control-pulse.vala
diff options
context:
space:
mode:
authorcharles kerr <charlesk@canonical.com>2015-12-28 15:56:44 -0600
committercharles kerr <charlesk@canonical.com>2015-12-28 15:56:44 -0600
commit6f553929ea723c0ab3d050807f4770924e23885c (patch)
treebddebcae219be652ed3fedf51438f181157ea0e3 /src/volume-control-pulse.vala
parente63ae571f56a93fce240f20d224bd356aa18a28b (diff)
downloadayatana-indicator-sound-6f553929ea723c0ab3d050807f4770924e23885c.tar.gz
ayatana-indicator-sound-6f553929ea723c0ab3d050807f4770924e23885c.tar.bz2
ayatana-indicator-sound-6f553929ea723c0ab3d050807f4770924e23885c.zip
remove earlier unneeded tracers
Diffstat (limited to 'src/volume-control-pulse.vala')
-rw-r--r--src/volume-control-pulse.vala6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/volume-control-pulse.vala b/src/volume-control-pulse.vala
index efbbb97..661e71b 100644
--- a/src/volume-control-pulse.vala
+++ b/src/volume-control-pulse.vala
@@ -328,16 +328,13 @@ public class VolumeControlPulse : VolumeControl
private async void update_active_sink_input (int32 index)
{
- GLib.message("index %d _active_sink_input %d in list %d", (int)index, (int)_active_sink_input, (int)(index in _sink_input_list));
if ((index == -1) || (index != _active_sink_input && index in _sink_input_list)) {
string sink_input_objp = _objp_role_alert;
if (index != -1)
sink_input_objp = _sink_input_hash.get (index);
_active_sink_input = index;
var stream = calculate_active_stream();
- GLib.message("calculating active stream: %d", (int)stream);
if (active_stream != stream) {
- GLib.message("changing active_stream from %d to %d", (int)active_stream, stream);
active_stream = stream;
}
@@ -731,7 +728,6 @@ public class VolumeControlPulse : VolumeControl
}
}
- GLib.message ("PulseAudio dbus unix socket: %s", address);
DBusConnection conn = null;
try {
conn = new DBusConnection.for_address_sync (address, DBusConnectionFlags.AUTHENTICATION_CLIENT);
@@ -739,7 +735,7 @@ public class VolumeControlPulse : VolumeControl
GLib.warning("Unable to connect to dbus server at '%s': %s", address, e.message);
/* If it fails, it means the dbus pulse extension is not available */
}
- GLib.message("conn is %p", (void*)conn);
+ GLib.debug ("PulseAudio dbus address is '%s', connection is '%p'", address, conn);
return conn;
}