summaryrefslogtreecommitdiffstats
path: root/pkg/git
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-26 15:46:18 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-08-26 16:53:31 +1000
commit540edc0c35e97393d9a01c927f7ac962bcbf6d37 (patch)
treef9f93b1905828f0c665fc25819400e16f4cbc27e /pkg/git
parent93ab892bdd1226f9a519a938c8b28590e71e54f3 (diff)
anonymous reporting data
Diffstat (limited to 'pkg/git')
-rw-r--r--pkg/git/branch_list_builder.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/git/branch_list_builder.go b/pkg/git/branch_list_builder.go
index 37421d5b6..651b684f5 100644
--- a/pkg/git/branch_list_builder.go
+++ b/pkg/git/branch_list_builder.go
@@ -22,12 +22,12 @@ import (
// BranchListBuilder returns a list of Branch objects for the current repo
type BranchListBuilder struct {
- Log *logrus.Logger
+ Log *logrus.Entry
GitCommand *commands.GitCommand
}
// NewBranchListBuilder builds a new branch list builder
-func NewBranchListBuilder(log *logrus.Logger, gitCommand *commands.GitCommand) (*BranchListBuilder, error) {
+func NewBranchListBuilder(log *logrus.Entry, gitCommand *commands.GitCommand) (*BranchListBuilder, error) {
return &BranchListBuilder{
Log: log,
GitCommand: gitCommand,