| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/log-utils.h" |
| 6 | 6 |
| 7 #include "src/log-utils.h" | 7 #include "src/assert-scope.h" |
| 8 #include "src/base/platform/platform.h" |
| 9 #include "src/objects-inl.h" |
| 8 #include "src/string-stream.h" | 10 #include "src/string-stream.h" |
| 11 #include "src/utils.h" |
| 9 #include "src/version.h" | 12 #include "src/version.h" |
| 10 | 13 |
| 11 namespace v8 { | 14 namespace v8 { |
| 12 namespace internal { | 15 namespace internal { |
| 13 | 16 |
| 14 | 17 |
| 15 const char* const Log::kLogToTemporaryFile = "&"; | 18 const char* const Log::kLogToTemporaryFile = "&"; |
| 16 const char* const Log::kLogToConsole = "-"; | 19 const char* const Log::kLogToConsole = "-"; |
| 17 | 20 |
| 18 | 21 |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 const int written = log_->WriteToFile(log_->message_buffer_, pos_); | 238 const int written = log_->WriteToFile(log_->message_buffer_, pos_); |
| 236 if (written != pos_) { | 239 if (written != pos_) { |
| 237 log_->stop(); | 240 log_->stop(); |
| 238 log_->logger_->LogFailure(); | 241 log_->logger_->LogFailure(); |
| 239 } | 242 } |
| 240 } | 243 } |
| 241 | 244 |
| 242 | 245 |
| 243 } // namespace internal | 246 } // namespace internal |
| 244 } // namespace v8 | 247 } // namespace v8 |
| OLD | NEW |