]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Relax log level
authorChocobozzz <me@florianbigard.com>
Wed, 13 Jul 2022 08:04:22 +0000 (10:04 +0200)
committerChocobozzz <me@florianbigard.com>
Wed, 13 Jul 2022 08:04:22 +0000 (10:04 +0200)
401 is expected when the token has expired
federation issues are not very important

server/lib/activitypub/actors/refresh.ts
server/lib/activitypub/actors/shared/url-to-object.ts
server/middlewares/auth.ts

index 0acaa9f62c1bfddb69ab9c7271d7032e00130837..8ce2cd5d93b3a8088c12cee5c893662a0563e85b 100644 (file)
@@ -48,7 +48,7 @@ async function doRefresh <T extends MActorFull | MActorAccountChannelId> (option
     const { actorObject } = await fetchRemoteActor(actorUrl)
 
     if (actorObject === undefined) {
-      logger.warn('Cannot fetch remote actor in refresh actor.')
+      logger.info('Cannot fetch remote actor %s in refresh actor.', actorUrl)
       return { actor, refreshed: false }
     }
 
@@ -67,7 +67,7 @@ async function doRefresh <T extends MActorFull | MActorAccountChannelId> (option
       return { actor: undefined, refreshed: false }
     }
 
-    logger.warn('Cannot refresh actor %s.', actor.url, { err, ...lTags() })
+    logger.info('Cannot refresh actor %s.', actor.url, { err, ...lTags() })
     return { actor, refreshed: false }
   }
 }
index 982d52b79a60069f8c9b7d37cbbf7781cd33d522..7bc37f1ff83ca18b45caf035141bf6f83eb2d3e4 100644 (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
   }
 }
index ad3b24ab21c27a1147aa3ca59ce8db56154f02c1..904d47efd1fd019dfe805f456556f1b73bb9ad8e 100644 (file)
@@ -14,7 +14,7 @@ function authenticate (req: express.Request, res: express.Response, next: expres
       return next()
     })
     .catch(err => {
-      logger.warn('Cannot authenticate.', { err })
+      logger.info('Cannot authenticate.', { err })
 
       return res.fail({
         status: err.status,