···522522 historyDir := matches[0]
523523 avJSONPath := filepath.Join(historyDir, "storage", "av", avID+".json")
524524 if !gulu.File.IsExist(avJSONPath) {
525525+ logging.LogWarnf("attribute view [%s] not found in history data [%s], use current data instead", avID, historyDir)
525526 avJSONPath = filepath.Join(util.DataDir, "storage", "av", avID+".json")
526527 }
527528 if !gulu.File.IsExist(avJSONPath) {
529529+ logging.LogWarnf("attribute view [%s] not found in current data", avID)
528530 attrView = av.NewAttributeView(avID)
529531 } else {
530532 data, readErr := os.ReadFile(avJSONPath)