[skip e2e] Improve log for rmq retention DeleteMessages (#15025)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
pull/15044/head
congqixia 2022-01-07 21:15:34 +08:00 committed by GitHub
parent ca7988fec7
commit eb1db3360a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ func DeleteMessages(db *gorocksdb.DB, topic string, startID, endID UniqueID) err
return err
}
log.Debug("Delete message for topic: "+topic, zap.Any("startID", startID), zap.Any("endID", endID))
log.Debug("Delete message for topic", zap.String("topic", topic), zap.Int64("startID", startID), zap.Int64("endID", endID))
return nil
}