Log writing function: writeChannels optimizes for duplicate logs. If multiple threads print the same log, it will accumulate the number of repetitions. When the log is different, it will print the duplicate log,
but the printed log is the first one when it is duplicated (the thread name printed is the thread corresponding to the first log),
it is possible that the subsequent duplicate logs are not from the thread corresponding to the first one,
it is recommended to add the thread condition when judging the duplication.
Log writing function: writeChannels optimizes for duplicate logs. If multiple threads print the same log, it will accumulate the number of repetitions. When the log is different, it will print the duplicate log, but the printed log is the first one when it is duplicated (the thread name printed is the thread corresponding to the first log), it is possible that the subsequent duplicate logs are not from the thread corresponding to the first one, it is recommended to add the thread condition when judging the duplication.
TRANS_BY_GITHUB_AI_ASSISTANT