mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-09 00:18:00 +01:00
fix: reduce severity of api token middleware errors (#4216)
This isn't something our on-calls can do something about when it fails, so downgrading to WARN seems like the right level.
This commit is contained in:
parent
96bc5ccd94
commit
902cc2f2e7
@ -77,7 +77,7 @@ const apiAccessMiddleware = (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logger.error(error);
|
logger.warn(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
next();
|
next();
|
||||||
|
Loading…
Reference in New Issue
Block a user