[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:
Abtin Keshavarzian
2021-06-06 22:07:46 -07:00
committed by GitHub
parent ac21e00fa1
commit 7bfdad5f73
-1
View File
@@ -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__)