mirror of
https://github.com/zero-peak/ZeroOmega.git
synced 2025-01-22 15:08:12 -05:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
4f38c64e8a
@ -4,14 +4,23 @@ Promise.longStackTraces()
|
||||
|
||||
OmegaTargetCurrent.Log = Object.create(OmegaTargetCurrent.Log)
|
||||
Log = OmegaTargetCurrent.Log
|
||||
|
||||
_writeLogToLocalStorage = (content) ->
|
||||
try
|
||||
localStorage['log'] += content
|
||||
catch
|
||||
# Maybe we have reached our limit here. See #1288. Try trimming it.
|
||||
localStorage['log'] = content
|
||||
|
||||
Log.log = (args...) ->
|
||||
console.log(args...)
|
||||
localStorage['log'] += args.map(Log.str.bind(Log)).join(' ') + '\n'
|
||||
content = args.map(Log.str.bind(Log)).join(' ') + '\n'
|
||||
_writeLogToLocalStorage(content)
|
||||
Log.error = (args...) ->
|
||||
console.error(args...)
|
||||
content = args.map(Log.str.bind(Log)).join(' ')
|
||||
localStorage['logLastError'] = content
|
||||
localStorage['log'] += 'ERROR: ' + content + '\n'
|
||||
_writeLogToLocalStorage('ERROR: ' + content + '\n')
|
||||
|
||||
unhandledPromises = []
|
||||
unhandledPromisesId = []
|
||||
|
Loading…
Reference in New Issue
Block a user