From 01f007a7534e709f18c2ac9471bd83cd37ce4ff6 Mon Sep 17 00:00:00 2001 From: Zac Date: Tue, 28 Aug 2018 14:25:32 -0700 Subject: [PATCH] updated verbosity settings for POST request log --- cmd/git-sync/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/git-sync/main.go b/cmd/git-sync/main.go index a9939db..451ef1f 100644 --- a/cmd/git-sync/main.go +++ b/cmd/git-sync/main.go @@ -279,7 +279,7 @@ func updateSymlink(ctx context.Context, gitRoot, link, newDir string) error { // If there is a symlink update callback, call it if len(*flSymlinkUpdatePostUrl) > 0 { - log.V(0).Infof("sending post request to %s", *flSymlinkUpdatePostUrl) + log.V(1).Infof("sending post request to %s", *flSymlinkUpdatePostUrl) // Send the post request req, err := http.NewRequest("POST", *flSymlinkUpdatePostUrl, nil) if err != nil {