Merge pull request 'dont clutter logs' (#384) from usage-stats into staging
Reviewed-on: #384
This commit is contained in:
commit
4b49b5517d
@ -125,7 +125,7 @@ impl Fairing for Usage {
|
||||
Ok(user_id) => {
|
||||
let db = req.rocket().state::<SqlitePool>().unwrap();
|
||||
if let Some(user) = User::find_by_id(db, user_id).await {
|
||||
user.name
|
||||
format!("User: {}", user.name)
|
||||
} else {
|
||||
format!("USER ID {user_id} NOT EXISTS")
|
||||
}
|
||||
@ -137,7 +137,11 @@ impl Fairing for Usage {
|
||||
|
||||
let uri = req.uri().to_string();
|
||||
|
||||
if !uri.ends_with(".css") && !uri.ends_with(".js") {
|
||||
if !uri.ends_with(".css")
|
||||
&& !uri.ends_with(".js")
|
||||
&& !uri.ends_with(".ico")
|
||||
&& !uri.ends_with(".json")
|
||||
{
|
||||
let config = req.rocket().state::<Config>().unwrap();
|
||||
let Ok(mut file) = OpenOptions::new()
|
||||
.write(true)
|
||||
|
Loading…
Reference in New Issue
Block a user