gururajbm / custom-select-tdd

Avoid using console in code that runs on browser JS-0002
Bug risk
Major
4 occurrences in this check
Avoid using console in code that runs on the browser
 82              // At this point, everything has been precached.
 83              // It's the perfect time to display a
 84              // "Content is cached for offline use." message.
 85              console.log('Content is cached for offline use.'); 86
 87              // Execute callback
 88              if (config && config.onSuccess) {
Avoid using console in code that runs on the browser
122      }
123    })
124    .catch(() => {
125      console.log(126        'No internet connection found. App is running in offline mode.'127      );128    });
129}
130
Avoid using console in code that runs on the browser
 41        // Add some additional logging to localhost, pointing developers to the
 42        // service worker/PWA documentation.
 43        navigator.serviceWorker.ready.then(() => {
 44          console.log( 45            'This web app is being served cache-first by a service ' + 46              'worker. To learn more, visit https://bit.ly/CRA-PWA' 47          ); 48        });
 49      } else {
 50        // Is not localhost. Just register service worker
Avoid using console in code that runs on the browser
 69              // At this point, the updated precached content has been fetched,
 70              // but the previous service worker will still serve the older
 71              // content until all client tabs are closed.
 72              console.log( 73                'New content is available and will be used when all ' + 74                  'tabs for this page are closed. See https://bit.ly/CRA-PWA.' 75              ); 76
 77              // Execute callback
 78              if (config && config.onUpdate) {