mirror of
https://github.com/espressif/openthread.git
synced 2026-09-07 09:40:12 +00:00
[posix] fix issue with logging CLI output (#6709)
This commit reverts the change from PR #6639 which added logging of the CLI output. Note that the CLI output can be generated and outputted in smaller pieces (not as a whole line) so the model from PR #6639 would emit each piece as a different log line which is not desirable.
This commit is contained in:
@@ -80,7 +80,6 @@ int Daemon::OutputFormatV(const char *aFormat, va_list aArguments)
|
||||
|
||||
VerifyOrExit(rval >= 0, otLogWarnPlat("Failed to format CLI output: %s", strerror(errno)));
|
||||
|
||||
otLogInfoPlat("%s", buf);
|
||||
VerifyOrExit(mSessionSocket != -1);
|
||||
|
||||
#if defined(__linux__)
|
||||
|
||||
Reference in New Issue
Block a user