mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1213709578
[web] migrate frontend logging to debugConsole GitOrigin-RevId: b03ff9030b03fff059738d2270bc4b4912e79f16
19 lines
485 B
JavaScript
19 lines
485 B
JavaScript
import { debugConsole } from '@/utils/debugging'
|
|
|
|
angular.module('localStorage', []).value('localStorage', localStorage)
|
|
|
|
/*
|
|
localStorage can throw browser exceptions, for example if it is full
|
|
We don't use localStorage for anything critical, on in that case just
|
|
fail gracefully.
|
|
*/
|
|
function localStorage(...args) {
|
|
try {
|
|
return $.localStorage(...args)
|
|
} catch (e) {
|
|
debugConsole.error('localStorage exception', e)
|
|
return null
|
|
}
|
|
}
|
|
|
|
export default localStorage
|