From: Unknown Date: Mon, 17 Mar 2014 19:47:27 +0000 (-0400) Subject: Add log output X-Git-Tag: v0.9.99~2412 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=971cd87cc684556d2daa273937e0f03e0dc5d48e;p=gitea.git Add log output --- diff --git a/models/repo.go b/models/repo.go index 1b74f19d46..3d11d0d011 100644 --- a/models/repo.go +++ b/models/repo.go @@ -182,16 +182,23 @@ func initRepoCommit(tmpPath string, sig *git.Signature) error { } defer os.Chdir(curPath) - if _, _, err := com.ExecCmd("git", "add", "--all"); err != nil { + var stdout, stderr string + if stdout, stderr, err = com.ExecCmd("git", "add", "--all"); err != nil { return err } - if _, _, err := com.ExecCmd("git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email), + log.Info("stdout(1): %s", stdout) + log.Info("stderr(1): %s", stderr) + if stdout, stderr, err = com.ExecCmd("git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email), "-m", "Init commit"); err != nil { return err } - if _, _, err := com.ExecCmd("git", "push", "origin", "master"); err != nil { + log.Info("stdout(2): %s", stdout) + log.Info("stderr(2): %s", stderr) + if stdout, stderr, err = com.ExecCmd("git", "push", "origin", "master"); err != nil { return err } + log.Info("stdout(3): %s", stdout) + log.Info("stderr(3): %s", stderr) return nil }