Index: src/log-utils.h |
diff --git a/src/log-utils.h b/src/log-utils.h |
index 451ffaa24b4a701c732735ea9d5f5745b6de5722..ef285e6d68c6dc8e4addd893f5af0220e40b279c 100644 |
--- a/src/log-utils.h |
+++ b/src/log-utils.h |
@@ -103,9 +103,9 @@ class Log { |
// Implementation of writing to a log file. |
int WriteToFile(const char* msg, int length) { |
- ASSERT(output_handle_ != NULL); |
+ DCHECK(output_handle_ != NULL); |
size_t rv = fwrite(msg, 1, length, output_handle_); |
- ASSERT(static_cast<size_t>(length) == rv); |
+ DCHECK(static_cast<size_t>(length) == rv); |
USE(rv); |
fflush(output_handle_); |
return length; |