diff --git a/kernel/model/import.go b/kernel/model/import.go index 47edb7757..8efc7c7fb 100644 --- a/kernel/model/import.go +++ b/kernel/model/import.go @@ -622,6 +622,7 @@ func ImportData(zipPath string) (err error) { lockSync() defer unlockSync() + logging.LogInfof("import data from [%s]", zipPath) baseName := filepath.Base(zipPath) ext := filepath.Ext(baseName) baseName = strings.TrimSuffix(baseName, ext) @@ -656,6 +657,7 @@ func ImportData(zipPath string) (err error) { return } + logging.LogInfof("import data from [%s] done", zipPath) IncSync() FullReindex() return