summaryrefslogtreecommitdiffstats
path: root/src/log-utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/log-utils.cc')
-rw-r--r--src/log-utils.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/log-utils.cc b/src/log-utils.cc
index fd956041..722e0fc0 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";