X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=src%2FPalete%2FLanguageClientVala.vala;h=b92035e9eaa1c2305b976387164cf5cd314fe7dd;hb=97512819719f3a912c1376ce037930ae1cc1fdd8;hp=d535822b40c8072f9209c478e2a7d616a9519f2b;hpb=341a0c1fb636275be75423b4ff69c069b27b5ba2;p=roobuilder diff --git a/src/Palete/LanguageClientVala.vala b/src/Palete/LanguageClientVala.vala index d535822b4..b92035e9e 100644 --- a/src/Palete/LanguageClientVala.vala +++ b/src/Palete/LanguageClientVala.vala @@ -241,7 +241,7 @@ namespace Palete { { switch (method) { case "textDocument/publishDiagnostics": - GLib.debug("got notification %s : %s", method , Json.to_string (Json.gvariant_serialize (return_value), true)); + //GLib.debug("got notification %s : %s", method , Json.to_string (Json.gvariant_serialize (return_value), true)); this.onDiagnostic(return_value); return; default: @@ -257,7 +257,7 @@ namespace Palete { */ public void onDiagnostic(Variant? return_value) { - GLib.debug ("LS replied with %s", Json.to_string (Json.gvariant_serialize (return_value), true)); + //GLib.debug ("LS replied with %s", Json.to_string (Json.gvariant_serialize (return_value), true)); var dg = Json.gobject_deserialize (typeof (Lsp.Diagnostics), Json.gvariant_serialize (return_value)) as Lsp.Diagnostics; this.log(LanguageClientAction.DIAG, dg.filename); var f = this.project.getByPath(dg.filename);