Clean up log message
This commit is contained in:
parent
d45a0bdc10
commit
be06caf2b4
1 changed files with 1 additions and 3 deletions
|
@ -33,9 +33,7 @@ function guard(type, fn) {
|
|||
try {
|
||||
return await fn(event, ...args)
|
||||
} catch (e) {
|
||||
console.error("hit event-dispatcher's error handler with this exception:")
|
||||
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.error(`Exception while processing a ${type} Matrix event:`)
|
||||
console.dir(event, {depth: null})
|
||||
|
||||
if (Date.now() - lastReportedEvent < 5000) return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue