File tree 1 file changed +8
-0
lines changed 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ func (self SearcherLogic) IndexingArticle(isAll bool) {
66
66
}
67
67
68
68
for _ , article := range articleList {
69
+ logger .Infoln ("deal article_id:" , article .Id )
70
+
69
71
if id < article .Id {
70
72
id = article .Id
71
73
}
@@ -127,6 +129,8 @@ func (self SearcherLogic) IndexingTopic(isAll bool) {
127
129
}
128
130
129
131
for _ , topic := range topicList {
132
+ logger .Infoln ("deal topic_id:" , topic .Tid )
133
+
130
134
if id < topic .Tid {
131
135
id = topic .Tid
132
136
}
@@ -187,6 +191,8 @@ func (self SearcherLogic) IndexingResource(isAll bool) {
187
191
}
188
192
189
193
for _ , resource := range resourceList {
194
+ logger .Infoln ("deal resource_id:" , resource .Id )
195
+
190
196
if id < resource .Id {
191
197
id = resource .Id
192
198
}
@@ -236,6 +242,8 @@ func (self SearcherLogic) IndexingOpenProject(isAll bool) {
236
242
}
237
243
238
244
for _ , project := range projectList {
245
+ logger .Infoln ("deal project_id:" , project .Id )
246
+
239
247
if id < project .Id {
240
248
id = project .Id
241
249
}
You can’t perform that action at this time.
0 commit comments