~synapse-core/synapse-project/trunk

« back to all changes in this revision

Viewing changes to src/plugins/pastebin-plugin.vala

  • Committer: Rico Tzschichholz
  • Date: 2014-07-10 11:39:28 UTC
  • Revision ID: ricotz@ubuntu.com-20140710113928-niigo5jqparprm3f
Override default logger to use the native console output API of GLib

Use an adapted Logger class from plank (by Robert Dyer)

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
        }
85
85
        catch (Error err)
86
86
        {
87
 
          Utils.Logger.warning (this, "%s", err.message);
 
87
          warning ("%s", err.message);
88
88
        }
89
89
 
90
90
        return null;
134
134
        }
135
135
        catch (Error err)
136
136
        {
137
 
          Utils.Logger.warning (this, "%s", err.message);
 
137
          warning ("%s", err.message);
138
138
        }
139
139
 
140
140
        return null;
169
169
        }
170
170
        catch (Error err)
171
171
        {
172
 
          Utils.Logger.warning (this, "%s", err.message);
 
172
          warning ("%s", err.message);
173
173
        }
174
174
      }
175
175
 
183
183
          string path = f.get_path ();
184
184
          if (path == null)
185
185
          {
186
 
            Utils.Logger.warning (this, "Unable to get path for %s", uri_match.uri);
 
186
            warning ("Unable to get path for %s", uri_match.uri);
187
187
            return;
188
188
          }
189
189
          pastebin_file.begin (path, (obj, res) => {