Reduce console logs clutter

This commit is contained in:
SillyLossy
2023-06-01 01:02:51 +03:00
parent e6f54363cc
commit 13d012a3a2
6 changed files with 62 additions and 62 deletions

View File

@ -2,10 +2,10 @@
export function SaveLocal(target, val) {
localStorage.setItem(target, val);
console.log('SaveLocal -- ' + target + ' : ' + val);
console.debug('SaveLocal -- ' + target + ' : ' + val);
}
export function LoadLocal(target) {
console.log('LoadLocal -- ' + target);
console.debug('LoadLocal -- ' + target);
return localStorage.getItem(target);
}
@ -24,4 +24,4 @@ export function CheckLocal() {
export function ClearLocal() { localStorage.clear(); console.log('Removed All Local Storage'); }
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////