| Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js
|
| index 14ea9163233aac7ca023995c716cda4d134ea920..d64e325f6f2a15d266f240f370669fbce7739a58 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js
|
| @@ -184,6 +184,8 @@ WebInspector.ConsoleView.prototype = {
|
| */
|
| _onMainFrameNavigated: function(event)
|
| {
|
| + if (!WebInspector.moduleSetting("preserveConsoleLog").get())
|
| + return;
|
| var frame = /** @type {!WebInspector.ResourceTreeFrame} */(event.data);
|
| WebInspector.console.log(WebInspector.UIString("Navigated to %s", frame.url));
|
| },
|
|
|