Index: src/log-utils.cc |
diff --git a/src/log-utils.cc b/src/log-utils.cc |
index cef7dbab24decb47f1ce3d9fa7233149113a119d..a44dca0765290c55446f16c25ab4d06a19a25e0b 100644 |
--- a/src/log-utils.cc |
+++ b/src/log-utils.cc |
@@ -79,13 +79,8 @@ void Log::Initialize() { |
FLAG_prof_auto = false; |
} |
- bool open_log_file = FLAG_log || FLAG_log_runtime || FLAG_log_api |
- || FLAG_log_code || FLAG_log_gc || FLAG_log_handles || FLAG_log_suspect |
- || FLAG_log_regexp || FLAG_log_state_changes || FLAG_ll_prof |
- || FLAG_log_internal_timer_events; |
- |
// If we're logging anything, we need to open the log file. |
- if (open_log_file) { |
+ if (Log::InitLogAtStart()) { |
if (strcmp(FLAG_logfile, "-") == 0) { |
OpenStdout(); |
} else if (strcmp(FLAG_logfile, kLogToTemporaryFile) == 0) { |