Fix task assingment
Change-Id: Id6df2c34fae9e2ae283819ddbdb972cc60464abf
diff --git a/server/git/git.go b/server/git/git.go
index 9aa1ae2..7e7ba44 100644
--- a/server/git/git.go
+++ b/server/git/git.go
@@ -377,6 +377,7 @@
func (g *Git) Add(ctx context.Context, paths []string) error {
args := append([]string{"add"}, paths...)
cmd := exec.CommandContext(ctx, "git", args...)
+ g.logger.Info("Adding files", slog.String("paths", strings.Join(paths, ", ")))
cmd.Dir = g.repoPath
return g.runCommand(cmd, "add")
}