~ubuntu-branches/ubuntu/precise/gnome-do/precise-proposed

« back to all changes in this revision

Viewing changes to Do/src/XKeybinder.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2008-09-14 10:09:40 UTC
  • mto: (0.1.8 sid)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20080914100940-kyghudg7py14bu2z
Tags: upstream-0.6.0.0
ImportĀ upstreamĀ versionĀ 0.6.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
                                try {
157
157
                                        key_sequence = (string) parent.client.Get (gconf_path);
158
158
                                } catch {
159
 
                                        Log.Info ("GConf key '{0}' does not exist, using default.", gconf_path);
 
159
                                        Log.Debug ("GConf key '{0}' does not exist, using default.", gconf_path);
160
160
                                }
161
161
 
162
162
                                SetBinding ();
169
169
                        void BindingChanged (object sender, GConf.NotifyEventArgs args)
170
170
                        {
171
171
                                if (args.Key == gconf_path) {
172
 
                                        Log.Info ("Binding for '{0}' changed to '{1}'!", gconf_path, args.Value);
 
172
                                        Log.Debug ("Binding for '{0}' changed to '{1}'!", gconf_path, args.Value);
173
173
 
174
174
                                        UnsetBinding ();
175
175
 
185
185
                                    key_sequence == "disabled")
186
186
                                        return;
187
187
 
188
 
                                Log.Info ("Binding key '{0}' for '{1}'." +
189
 
                                          " You may change this keybinding with" +
190
 
                                          " Configuration Editor (gconf-editor).",
 
188
                                Log.Debug ("Binding key '{0}' for '{1}'.",
191
189
                                          key_sequence, gconf_path);
192
190
 
193
191
                                parent.Bind (key_sequence, handler);
198
196
                                if (key_sequence == null)
199
197
                                        return;
200
198
 
201
 
                                Log.Info ("Unbinding key '{0}' for '{1}'",
 
199
                                Log.Debug ("Unbinding key '{0}' for '{1}'",
202
200
                                          key_sequence,
203
201
                                          gconf_path);
204
202