| 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 e893a975e16b82d96f9783b4443754cad7cd0f89..79457d97b96b8dede3d139c923c36078712fe23c 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));
|
| },
|
|
|