diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2018-01-07 10:48:04 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2018-01-07 10:48:04 -0500 |
| commit | 20cebebf4f3ec8390f616a19b0c90603110d49e6 (patch) | |
| tree | 24a98ea2422cd170a9d69b852ee2e1a083cbc3ee /www/js/LogCtrl.js | |
| parent | 3832eafc4f7ef2e5944971f09d2e865a5e2b30f4 (diff) | |
removed several console logs
Diffstat (limited to 'www/js/LogCtrl.js')
| -rw-r--r-- | www/js/LogCtrl.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/LogCtrl.js b/www/js/LogCtrl.js index e3f4da35..46c1084e 100644 --- a/www/js/LogCtrl.js +++ b/www/js/LogCtrl.js @@ -36,7 +36,7 @@ angular.module('zmApp.controllers').controller('zmApp.LogCtrl', ['$scope', '$roo $scope.logEntity = $rootScope.appName; else $scope.logEntity = 'ZoneMinder'; - console.log ("Flipped"); + //console.log ("Flipped"); loadLogs(); }; @@ -214,9 +214,9 @@ angular.module('zmApp.controllers').controller('zmApp.LogCtrl', ['$scope', '$roo .then (function (success) { $ionicLoading.hide(); $scope.zmMaxPage = success.data.pagination.pageCount; - console.log ("PAGES="+$scope.zmMaxPage); + // console.log ("PAGES="+$scope.zmMaxPage); var tLogs = ""; - console.log (JSON.stringify(success)); + // console.log (JSON.stringify(success)); for (var i=0; i< success.data.logs.length; i++) { tLogs = tLogs + moment.unix(success.data.logs[i].Log.TimeKey).format ("MM/DD/YY hh:mm:ss") +" "+ |
