Removing uncecessary console.log

This commit is contained in:
Colin McLeod
2015-06-07 15:40:37 -07:00
parent 03eb66a4d0
commit 2b822176e4

View File

@@ -203,7 +203,6 @@ angular.module('app').service('Persist', ['$window','lodash', function ($window,
*/
this.setState = function (state) {
if (this.lsEnabled) {
console.log('Stand Alone state update:', state);
localStorage.setItem('state',angular.toJson(state));
}
};