browsertime 14.12.0 → 14.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 14.12.1 - 2021-12-01
|
|
4
|
+
### Fixed
|
|
5
|
+
* Changed log level to debug for Chrome/Edge when document request fails. It turns out that IRL that happens a lot and spam the log. Lets iterate over that functionality.
|
|
3
6
|
## 14.12.0 - 2021-11-30
|
|
4
7
|
### Fixed
|
|
5
8
|
* Adding error log message for Chrome/Edge when document request fails (faulty domain etc) [#1682](https://github.com/sitespeedio/browsertime/pull/1682).
|
|
@@ -164,7 +164,7 @@ class ChromeDevtoolsProtocol {
|
|
|
164
164
|
async loadingFailed() {
|
|
165
165
|
return this.cdpClient.Network.loadingFailed(param => {
|
|
166
166
|
if (param.type === 'Document') {
|
|
167
|
-
log.
|
|
167
|
+
log.debug('Could not load document:' + param.errorText);
|
|
168
168
|
}
|
|
169
169
|
});
|
|
170
170
|
}
|