diff options
author | Unknwon <u@gogs.io> | 2018-06-13 22:26:56 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2018-06-13 22:26:56 +0800 |
commit | 7856b1202d6bfd8bded396b87692ea7113fedbed (patch) | |
tree | f1c7aeb74750a227173ab5a997c4fb124bd85123 /models | |
parent | e5ddbcab7d9c95f6b3043cac8bec9b8c7851ad04 (diff) |
*: fix wrong format type
Diffstat (limited to 'models')
-rw-r--r-- | models/mirror.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/mirror.go b/models/mirror.go index a2d3d629..da6b7f2b 100644 --- a/models/mirror.go +++ b/models/mirror.go @@ -362,7 +362,7 @@ func MirrorUpdate() { func SyncMirrors() { // Start listening on new sync requests. for repoID := range MirrorQueue.Queue() { - log.Trace("SyncMirrors [repo_id: %d]", repoID) + log.Trace("SyncMirrors [repo_id: %s]", repoID) MirrorQueue.Remove(repoID) m, err := GetMirrorByRepoID(com.StrTo(repoID).MustInt64()) |