From 3e26b3e64a128e82067c13341aad57421357440f Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 5 Jul 2018 09:39:39 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/GitRepo.vala b/GitRepo.vala index 7cf95383..9002546b 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -73,7 +73,7 @@ public class GitRepo : Object } } catch (Error e) { - GLib.debug("Error: %s\n",e.message); + GLib.debug("Error: %s",e.message); break; } @@ -328,8 +328,8 @@ public class GitRepo : Object //this.lastCmd = args.join(" "); //if(this.debug) { - GLib.debug( "CWD=%s\n", this.git_working_dir ); - GLib.debug( "cmd: %s\n", string.joinv (" ", args)); + GLib.debug( "CWD=%s", this.git_working_dir ); + GLib.debug( "cmd: %s", string.joinv (" ", args)); //} string[] env = {}; @@ -348,7 +348,7 @@ public class GitRepo : Object var sp = new Spawn(cfg); - GLib.debug( "GOT: %s\n" , sp.output); + GLib.debug( "GOT: %s" , sp.output); // parse output for some commands ? return sp.output; } @@ -374,7 +374,7 @@ public class GitRepo : Object //this.lastCmd = args.join(" "); //if(this.debug) { - GLib.debug( "CWD=%s\n", this.git_working_dir ); + GLib.debug( "CWD=%s", this.git_working_dir ); //print( "cmd: %s\n", string.joinv (" ", args)); //} @@ -401,7 +401,7 @@ public class GitRepo : Object void git_async_on_complete(int err, string output) { - GLib.debug("GOT %s\n", output); + GLib.debug("GOT %s", output); this.git_async_on_callback(this, output); // this.unref(); // sp.unref(); -- 2.39.2