Merge pull request #19507 from taosdata/feat/ly_stream

fix:do not print log
This commit is contained in:
Shengliang Guan 2023-01-11 18:14:09 +08:00 committed by GitHub
commit 313ab66bba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1331,9 +1331,9 @@ int32_t tTagNew(SArray *pArray, int32_t version, int8_t isJson, STag **ppTag) {
}
n += tPutTagVal(p + n, (STagVal *)taosArrayGet(pArray, iTag), isJson);
}
// #ifdef TD_DEBUG_PRINT_TAG
#ifdef TD_DEBUG_PRINT_TAG
debugPrintSTag(*ppTag, __func__, __LINE__);
// #endif
#endif
return code;