fix(stream): log level (#30331)
This commit is contained in:
parent
e0bd3c0e33
commit
b09c744fe4
|
@ -3134,7 +3134,7 @@ rocksdb_iterator_t* streamStateIterCreate(SStreamState* pState, const char* cfKe
|
||||||
taosMemoryFree(err); \
|
taosMemoryFree(err); \
|
||||||
code = TSDB_CODE_THIRDPARTY_ERROR; \
|
code = TSDB_CODE_THIRDPARTY_ERROR; \
|
||||||
} else { \
|
} else { \
|
||||||
stInfo("[InternalERR] write streamState str:%s succ to write to %s, rowValLen:%d, ttlValLen:%d, %p", toString, \
|
stDebug("[InternalERR] write streamState str:%s succ to write to %s, rowValLen:%d, ttlValLen:%d, %p", toString, \
|
||||||
funcname, vLen, ttlVLen, wrapper); \
|
funcname, vLen, ttlVLen, wrapper); \
|
||||||
} \
|
} \
|
||||||
taosMemoryFree(ttlV); \
|
taosMemoryFree(ttlV); \
|
||||||
|
@ -4593,7 +4593,7 @@ int32_t streamStatePutBatchOptimize(SStreamState* pState, int32_t cfIdx, rocksdb
|
||||||
int32_t klen = ginitDict[cfIdx].enFunc((void*)key, buf);
|
int32_t klen = ginitDict[cfIdx].enFunc((void*)key, buf);
|
||||||
|
|
||||||
ginitDict[cfIdx].toStrFunc((void*)key, toString);
|
ginitDict[cfIdx].toStrFunc((void*)key, toString);
|
||||||
qInfo("[InternalERR] write cfIdx:%d key:%s vlen:%d", cfIdx, toString, vlen);
|
stDebug("[InternalERR] write cfIdx:%d key:%s vlen:%d", cfIdx, toString, vlen);
|
||||||
|
|
||||||
char* ttlV = tmpBuf;
|
char* ttlV = tmpBuf;
|
||||||
int32_t ttlVLen = ginitDict[cfIdx].enValueFunc(dst, size, ttl, &ttlV);
|
int32_t ttlVLen = ginitDict[cfIdx].enValueFunc(dst, size, ttl, &ttlV);
|
||||||
|
|
Loading…
Reference in New Issue