1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00

Relax log level

401 is expected when the token has expired
federation issues are not very important
This commit is contained in:
Chocobozzz 2022-07-13 10:04:22 +02:00
parent dea0df90d5
commit b0f4204266
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 4 additions and 4 deletions

View file

@ -47,7 +47,7 @@ async function fetchActorTotalItems (url: string) {
return body.totalItems || 0
} catch (err) {
logger.warn('Cannot fetch remote actor count %s.', url, { err })
logger.info('Cannot fetch remote actor count %s.', url, { err })
return 0
}
}