fix: log output for tsim and other apps (#30210)
This commit is contained in:
parent
a2fd1ee68f
commit
094836daea
|
@ -754,7 +754,11 @@ static inline void taosPrintLogImp(ELogLevel level, int32_t dflag, const char *b
|
||||||
|
|
||||||
int fd = 0;
|
int fd = 0;
|
||||||
if (tsLogObj.outputType == LOG_OUTPUT_FILE) {
|
if (tsLogObj.outputType == LOG_OUTPUT_FILE) {
|
||||||
|
#ifndef TAOSD_INTEGRATED
|
||||||
|
if (dflag & DEBUG_SCREEN) fd = 1;
|
||||||
|
#else
|
||||||
if ((dflag & DEBUG_SCREEN) && tsLogEmbedded) fd = 1;
|
if ((dflag & DEBUG_SCREEN) && tsLogEmbedded) fd = 1;
|
||||||
|
#endif
|
||||||
} else if (tsLogObj.outputType == LOG_OUTPUT_STDOUT) {
|
} else if (tsLogObj.outputType == LOG_OUTPUT_STDOUT) {
|
||||||
fd = 1;
|
fd = 1;
|
||||||
} else if (tsLogObj.outputType == LOG_OUTPUT_STDERR) {
|
} else if (tsLogObj.outputType == LOG_OUTPUT_STDERR) {
|
||||||
|
|
Loading…
Reference in New Issue