Fix global_rmq.go log string concat (#13225)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
pull/13268/head
congqixia 2021-12-13 15:56:31 +08:00 committed by GitHub
parent 288ad62997
commit 8475b10d8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ func InitRocksMQ() error {
once.Do(func() {
params.Init()
rocksdbName, _ := params.Load("_RocksmqPath")
log.Debug("RocksmqPath=" + rocksdbName)
log.Debug("initializing global rmq", zap.String("path", rocksdbName))
var fi os.FileInfo
fi, finalErr = os.Stat(rocksdbName)
if os.IsNotExist(finalErr) {