Index: src/log-utils.cc |
diff --git a/src/log-utils.cc b/src/log-utils.cc |
index fd9560418c196bdc31a4f750745e7ea58393205b..722e0fc042ab4ed52b7b6af20507d2dbafaac90e 100644 |
--- a/src/log-utils.cc |
+++ b/src/log-utils.cc |
@@ -351,15 +351,6 @@ void LogMessageBuilder::WriteToLogFile() { |
} |
-void LogMessageBuilder::WriteCStringToLogFile(const char* str) { |
- const int len = StrLength(str); |
- const int written = Log::Write(str, len); |
- if (written != len && write_failure_handler != NULL) { |
- write_failure_handler(); |
- } |
-} |
- |
- |
// Formatting string for back references to the whole line. E.g. "#2" means |
// "the second line above". |
const char* LogRecordCompressor::kLineBackwardReferenceFormat = "#%d"; |