diff options
| author | Jeff Carr <[email protected]> | 2025-09-22 09:29:46 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-22 09:29:46 -0500 |
| commit | 17a62eb8daa812d1450e0b8324abfd9a6c67660e (patch) | |
| tree | 9bbe5b0c27e32b6cf16db01715380e324f68f45a | |
| parent | ba2f156c3db95b325c6ca09104c2d209abd15f88 (diff) | |
| -rw-r--r-- | doNormal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doNormal.go b/doNormal.go index ce0804a..b8271e3 100644 --- a/doNormal.go +++ b/doNormal.go @@ -94,7 +94,7 @@ func checkNormalRepoState(repo *gitpb.Repo) error { repo.VerifyRemoteAndLocalBranches(repo.GetMasterBranchName()) if repo.GetCurrentBranchName() != repo.GetUserBranchName() { - log.Info("changing to user branch", repo.FullPath) + log.Infof("changing to user(%s) branch: %s\n", repo.GetUserBranchName(), repo.FullPath) repo.CheckoutUser() repo.ReloadCheck() err = log.Errorf("now on user branch") |
