logging: Change the posix log fprintf to use \r only. (#351)

This commit is contained in:
Abtin Keshavarzian
2016-08-09 12:14:19 -07:00
committed by Jonathan Hui
parent de9313be75
commit 66dce223d6
+1 -1
View File
@@ -135,6 +135,6 @@ void otPlatLog(otLogLevel aLogLevel, otLogRegion aLogRegion, const char *aFormat
VerifyOrExit(charsWritten >= 0, logString[index] = 0);
exit:
fprintf(stderr, "%s\r\n", logString);
fprintf(stderr, "%s\r", logString);
}