| Index: third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js
 | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js b/third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js
 | 
| index aa63d0b3d8aa2ae2b874616397f4821421f67885..9554d691646b9aa711e433cacb464ee80e21285c 100644
 | 
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js
 | 
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js
 | 
| @@ -141,7 +141,7 @@ SDK.CookieParser = class {
 | 
|      // cookie values, though.
 | 
|      var keyValueMatch = /^[ \t]*([^\s=;]+)[ \t]*(?:=[ \t]*([^;\n]*))?/.exec(this._input);
 | 
|      if (!keyValueMatch) {
 | 
| -      console.log('Failed parsing cookie header before: ' + this._input);
 | 
| +      console.error('Failed parsing cookie header before: ' + this._input);
 | 
|        return null;
 | 
|      }
 | 
|  
 | 
| 
 |