Skip to content

Commit a103712

Browse files
author
Julien Gilli
committed
deps: do not add extra newline in log file
The commit in v0.10 (431eb17) that backported the original change (https://codereview.chromium.org/806143002) did add an extra newline because the logging facilities in v0.10's V8 do not add one. When merging this commit in v0.12, V8's logging facilities now automatically add the newline character, and the debug builds assert if one is already present.
1 parent 2b095bb commit a103712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/v8/src/log-utils.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void Log::Initialize(const char* log_file_name) {
5454

5555
if (output_handle_ != NULL) {
5656
Log::MessageBuilder msg(this);
57-
msg.Append("v8-version,%d,%d,%d,%d,%d\n", Version::GetMajor(),
57+
msg.Append("v8-version,%d,%d,%d,%d,%d", Version::GetMajor(),
5858
Version::GetMinor(), Version::GetBuild(), Version::GetPatch(),
5959
Version::IsCandidate());
6060
msg.WriteToLogFile();

0 commit comments

Comments
 (0)