Compare commits
2 commits
d45a0bdc10
...
fa8ce28f88
Author | SHA1 | Date | |
---|---|---|---|
fa8ce28f88 | |||
be06caf2b4 |
2 changed files with 2 additions and 4 deletions
|
@ -33,9 +33,7 @@ function guard(type, fn) {
|
||||||
try {
|
try {
|
||||||
return await fn(event, ...args)
|
return await fn(event, ...args)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error("hit event-dispatcher's error handler with this exception:")
|
console.error(`Exception while processing a ${type} Matrix event:`)
|
||||||
console.error(e) // TODO: also log errors into a file or into the database, maybe use a library for this? or just wing it?
|
|
||||||
console.error(`while handling this ${type} gateway event:`)
|
|
||||||
console.dir(event, {depth: null})
|
console.dir(event, {depth: null})
|
||||||
|
|
||||||
if (Date.now() - lastReportedEvent < 5000) return
|
if (Date.now() - lastReportedEvent < 5000) return
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue