LP#1739803 Quiet some repetitive console messages for unit tests
authorBill Erickson <berickxx@gmail.com>
Fri, 22 Dec 2017 17:19:43 +0000 (12:19 -0500)
committerGalen Charlton <gmc@equinoxinitiative.org>
Wed, 21 Feb 2018 19:42:07 +0000 (14:42 -0500)
These console logs repeat during unit test runs and add clutter (ditto
the browser console log).  I commented them out instead of removing them
since they may still be useful for debugging in the future.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Jason Stephenson <jason@sigio.com>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Open-ILS/web/js/ui/default/staff/services/env.js
Open-ILS/web/js/ui/default/staff/services/grid.js
Open-ILS/web/js/ui/default/staff/services/hatch.js
Open-ILS/web/js/ui/default/staff/services/lovefield.js

index 4fe755a..1406a19 100644 (file)
@@ -134,7 +134,7 @@ function($q,  $window , $injector , egAuth,  egPCRUD,  egIDL) {
             if (!egLovefield) {
                 egLovefield = $injector.get('egLovefield');
             }
-            console.debug('About to cache a list of ' + class_ + ' objects...');
+            //console.debug('About to cache a list of ' + class_ + ' objects...');
             egLovefield.isCacheGood(class_).then(function(good) {
                 if (!good) egLovefield.setListInOfflineCache(class_, blob.list);
             });
index 17fc743..b2d760a 100644 (file)
@@ -1437,7 +1437,7 @@ angular.module('egGridMod',
 
             if (!class_obj) return;
 
-            console.debug('egGrid: auto dotpath is: ' + dotpath);
+            //console.debug('egGrid: auto dotpath is: ' + dotpath);
             var path_parts = dotpath.split(/\./);
 
             // find the IDL class definition for the last element in the
index e8107ea..f7083a7 100644 (file)
@@ -125,7 +125,7 @@ angular.module('egCoreMod')
         // When the Hatch extension loads, it tacks an attribute onto
         // the top-level documentElement to indicate it's available.
         if (!$window.document.documentElement.getAttribute('hatch-is-open')) {
-            console.debug("Hatch is not available");
+            //console.debug("Hatch is not available");
             return;
         }
 
index dfebc4b..174a420 100644 (file)
@@ -62,7 +62,7 @@ angular.module('egCoreMod')
         
         var deferred = $q.defer();
 
-        console.debug('attempting offline DB connection');
+        //console.debug('attempting offline DB connection');
         try {
             osb.connect().then(
                 function(db) {