Merge pull request #924 from BlakeMesdag/fixup-sync-log
Sync logging should use repo.Owner not user.Login
This commit is contained in:
commit
20f7ba62f3
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ func SyncUser(ctx context.Context, user *model.User, remote remote.Remote) {
|
|||
continue
|
||||
}
|
||||
|
||||
log.Println("Successfully syced repo.", user.Login+"/"+repo.Name)
|
||||
log.Printf("Successfully syced repo. %s/%s\n", repo.Owner, repo.Name)
|
||||
}
|
||||
|
||||
user.Synced = time.Now().UTC().Unix()
|
||||
|
|
Loading…
Reference in a new issue