[skip e2e]Improve log format (#14885)

Signed-off-by: xige-16 <xi.ge@zilliz.com>
pull/14889/head
xige-16 2022-01-05 21:13:20 +08:00 committed by GitHub
parent 64a5db66e9
commit d751357be1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -371,7 +371,7 @@ func (node *QueryNode) ReleaseCollection(ctx context.Context, in *queryPb.Releas
log.Error(err.Error())
return status, nil
}
log.Debug("releaseCollectionTask Enqueue done", zap.Any("collectionID", in.CollectionID))
log.Debug("releaseCollectionTask Enqueue done", zap.Int64("collectionID", in.CollectionID))
func() {
err = dct.WaitToFinish()
@ -379,7 +379,7 @@ func (node *QueryNode) ReleaseCollection(ctx context.Context, in *queryPb.Releas
log.Error(err.Error())
return
}
log.Debug("releaseCollectionTask WaitToFinish done", zap.Any("collectionID", in.CollectionID))
log.Debug("releaseCollectionTask WaitToFinish done", zap.Int64("collectionID", in.CollectionID))
}()
status := &commonpb.Status{