Skip to content

Commit e460dba

Browse files
eriksson-danielcskrov
authored andcommitted
No access token: Debug log instead of warn because (for now) it is expected that this will happen for unauthed users
1 parent 8391085 commit e460dba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/plugins/obo-token.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const getOboToken: GetOboToken = async (appName, req, reply) => {
8585
});
8686

8787
if (accessToken.length === 0) {
88-
log.warn({ msg: 'No access token found.', trace_id, span_id, data: { route: url } });
88+
log.debug({ msg: 'No access token found.', trace_id, span_id, data: { route: url } });
8989

9090
return undefined;
9191
}

0 commit comments

Comments
 (0)