Merge pull request 'fix ci' (#381) from usage-stats into staging

Reviewed-on: Ruderverein-Donau-Linz/rowt#381
This commit is contained in:
philipp 2024-04-16 09:07:31 +02:00
commit 6daf2495a8

View File

@ -139,11 +139,17 @@ impl Fairing for Usage {
if !uri.ends_with(".css") && !uri.ends_with(".js") {
let config = req.rocket().state::<Config>().unwrap();
let mut file = OpenOptions::new()
let Ok(mut file) = OpenOptions::new()
.write(true)
.append(true)
.open(config.usage_log_path.clone())
.unwrap();
else {
eprintln!(
"File {} can't be found, not saving usage logs",
config.usage_log_path.clone()
);
return;
};
if let Err(e) = writeln!(file, "{timestamp};{user};{uri}") {
eprintln!("Couldn't write to file: {}", e);