Fix failover on failed sends, and improve logging
This commit is contained in:
parent
5e9bbb42f1
commit
65b6d9c2bc
4 changed files with 19 additions and 4 deletions
|
@ -1772,7 +1772,9 @@ export async function startApp(): Promise<void> {
|
|||
} catch (error) {
|
||||
log.error(
|
||||
'connect: Error refreshing remote config:',
|
||||
Errors.toLogFormat(error)
|
||||
isNumber(error.code)
|
||||
? `code: ${error.code}`
|
||||
: Errors.toLogFormat(error)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue