Revision: 8720 Author: [email protected] Date: Fri Jul 22 02:59:45 2011 Log: Finally, remove logging to memory support.
Since r93412, Chromium no more passes "--logfile=*" to V8. [email protected] BUG=859 Review URL: http://codereview.chromium.org/7479004 http://code.google.com/p/v8/source/detail?r=8720 Modified: /branches/bleeding_edge/src/log-utils.cc ======================================= --- /branches/bleeding_edge/src/log-utils.cc Wed Jul 13 04:31:22 2011 +++ /branches/bleeding_edge/src/log-utils.cc Fri Jul 22 02:59:45 2011 @@ -86,8 +86,6 @@ if (open_log_file) { if (strcmp(FLAG_logfile, "-") == 0) { OpenStdout(); - } else if (strcmp(FLAG_logfile, "*") == 0) { - // Does nothing for now. Will be removed. } else if (strcmp(FLAG_logfile, kLogToTemporaryFile) == 0) { OpenTemporaryFile(); } else { -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
