diff --git a/client/homebrew/pages/archivePage/archivePage.jsx b/client/homebrew/pages/archivePage/archivePage.jsx index 3bdf44289..3e69b034b 100644 --- a/client/homebrew/pages/archivePage/archivePage.jsx +++ b/client/homebrew/pages/archivePage/archivePage.jsx @@ -114,7 +114,9 @@ const ArchivePage = createClass({ } }); } catch (error) { - console.log(`LoadPage error: ${error}`); + if (error.response && error.response.status === 503) { + console.log('loadPage 503'); + } this.setState({ error: `${error}` }); this.updateStateWithBrews([], 1, 1, 0); } @@ -257,7 +259,7 @@ const ArchivePage = createClass({ if(title === '') {return (

Whenever you want, just start typing...

);} if (error) { - console.log(error.errorCode); + console.log('render Error: ', error); let errorMessage; switch (error.errorCode) { case '404':