Skip to content

Commit c3638af

Browse files
authored
Merge pull request #37614 from compnerd/newline
SourceKit: add a newline to logged messages
2 parents 7cfdc62 + b1cd2bd commit c3638af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/SourceKit/lib/Support/Logging.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Logger::~Logger() {
6363
OS << llvm::format("%7.4f] ", TR.getWallTime() - sBeginTR.getWallTime());
6464
OS << Msg.str();
6565

66-
fprintf(stderr, "%s: %s", LoggerName.c_str(), LogMsg.c_str());
66+
fprintf(stderr, "%s: %s\n", LoggerName.c_str(), LogMsg.c_str());
6767

6868
#if __APPLE__
6969
// Use the Apple System Log facility.

0 commit comments

Comments
 (0)