Skip to content

Commit

Permalink
adjust error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jdub233 committed May 20, 2020
1 parent 65bfc20 commit f6a1eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validatePlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = class ValidatePlugin {
registerAction('afterResponse', async ({response}) => {
if (response.statusCode !== 200) {
// Don't capture bad assets. Also cancels the upload phase if the root page has a bad status code.
console.log( `Bad status code ${response.statusCode} , cancelling asset capture` );
console.log( `A bad status code ${response.statusCode} was encountered, cancelling asset capture` );
return null;
} else {
return {
Expand Down

0 comments on commit f6a1eb3

Please sign in to comment.