1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-11-05 03:48:52 +01:00

Reformatted

This commit is contained in:
Torsten Flammiger 2022-01-21 14:28:07 +01:00
parent fd6427a83f
commit ba6d72f3f9

View file

@ -147,7 +147,10 @@ impl Users {
match utils::string_from_bytes(username) { match utils::string_from_bytes(username) {
Ok(u) => Some(u), Ok(u) => Some(u),
Err(e) => { Err(e) => {
warn!("Failed to parse username while calling get_local_users(): {}", e.to_string()); warn!(
"Failed to parse username while calling get_local_users(): {}",
e.to_string()
);
None None
} }
} }