feat: improve logging, solve lints, improve implementations, remove unused code, standardize things

This commit is contained in:
2025-08-27 12:13:09 -05:00
parent 9972357cf6
commit ac70306c04
10 changed files with 168 additions and 121 deletions

View File

@@ -32,7 +32,7 @@ pub async fn gcal(
{
Ok(course) => course,
Err(e) => {
error!(%e, crn, "Failed to fetch course data");
error!(%e, crn, "failed to fetch course data");
return Err(Error::from(e));
}
};
@@ -44,7 +44,7 @@ pub async fn gcal(
{
Ok(meeting_time) => meeting_time,
Err(e) => {
error!("Failed to get meeting times: {}", e);
error!("failed to get meeting times: {}", e);
return Err(Error::from(e));
}
};