Update otLog*() to not require line separators. (#854)

This commit is contained in:
Jonathan Hui
2016-10-20 19:55:12 -07:00
committed by GitHub
parent 5346d81669
commit 35e7fbf733
25 changed files with 194 additions and 199 deletions
+1 -1
View File
@@ -138,6 +138,6 @@ void otPlatLog(otLogLevel aLogLevel, otLogRegion aLogRegion, const char *aFormat
VerifyOrExit(charsWritten >= 0, logString[offset] = 0);
exit:
fprintf(stderr, "%s\r", logString);
fprintf(stderr, "%s\r\n", logString);
}