We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8418046 commit e605406Copy full SHA for e605406
be/src/api.rs
@@ -264,10 +264,10 @@ pub async fn limit(
264
) -> Result<axum::response::Response, Error> {
265
if !account_limit.origins.is_empty() {
266
match origin_domain {
267
- None => tracing::error!("missing origin"),
+ None => tracing::warn!("missing origin"),
268
Some(domain) => {
269
if !account_limit.origins.contains(domain.0.as_str()) {
270
- tracing::error!("origin {:?} not allowed", domain);
+ tracing::warn!("origin {:?} not allowed", domain);
271
}
272
273
0 commit comments