diff options
author | Ted Gould <ted@gould.cx> | 2014-03-20 15:40:39 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-03-20 15:40:39 -0500 |
commit | cdfa2afeb95b1067bde7412b6cee744a1ab0e0b9 (patch) | |
tree | 29d58ed66ecc3f5517614b0ee47aca706619923f /src/service.vala | |
parent | 6be3d4e79f6121a56ae458c18af010768d73a2dc (diff) | |
download | ayatana-indicator-sound-cdfa2afeb95b1067bde7412b6cee744a1ab0e0b9.tar.gz ayatana-indicator-sound-cdfa2afeb95b1067bde7412b6cee744a1ab0e0b9.tar.bz2 ayatana-indicator-sound-cdfa2afeb95b1067bde7412b6cee744a1ab0e0b9.zip |
Debug messages
Diffstat (limited to 'src/service.vala')
-rw-r--r-- | src/service.vala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/service.vala b/src/service.vala index 8863a16..de03296 100644 --- a/src/service.vala +++ b/src/service.vala @@ -71,11 +71,13 @@ public class IndicatorSound.Service: Object { /* If we're not exporting, don't build anything */ if (!this.settings.get_boolean("greeter-export")) { + debug("Accounts service export disabled due to user setting"); return; } /* If we're on the greeter, don't export */ if (GLib.Environment.get_user_name() == "lightdm") { + debug("Accounts service export disabled due to being used on the greeter"); return; } |