Browse Source

migration: add trace log

pull/3802/merge
Unknwon 8 years ago
parent
commit
904f0ebec3
No known key found for this signature in database
GPG Key ID: 25B575AE3213B2B3
  1. 9
      models/migrations/v15.go

9
models/migrations/v15.go

@ -13,6 +13,7 @@ import (
"github.com/Unknwon/com" "github.com/Unknwon/com"
"github.com/go-xorm/xorm" "github.com/go-xorm/xorm"
log "gopkg.in/clog.v1"
"github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/modules/setting"
) )
@ -36,9 +37,11 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
} }
) )
// Cleanup old update.log files. // Cleanup old update.log and http.log files.
filepath.Walk(setting.LogRootPath, func(path string, info os.FileInfo, err error) error { filepath.Walk(setting.LogRootPath, func(path string, info os.FileInfo, err error) error {
if !info.IsDir() && strings.HasPrefix(filepath.Base(path), "update.log") { if !info.IsDir() &&
(strings.HasPrefix(filepath.Base(path), "update.log") ||
strings.HasPrefix(filepath.Base(path), "http.log")) {
os.Remove(path) os.Remove(path)
} }
return nil return nil
@ -56,6 +59,8 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
} }
repoPath := filepath.Join(setting.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name)) + ".git" repoPath := filepath.Join(setting.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name)) + ".git"
log.Trace("[%04d]: %s", idx, repoPath)
hookDir := filepath.Join(repoPath, "hooks") hookDir := filepath.Join(repoPath, "hooks")
customHookDir := filepath.Join(repoPath, "custom_hooks") customHookDir := filepath.Join(repoPath, "custom_hooks")

Loading…
Cancel
Save