refactor: remove useless dbg print

This commit is contained in:
Matthieu Bessat 2025-06-14 15:11:38 +02:00
parent 15020e9878
commit fdb868d10c
6 changed files with 0 additions and 7 deletions

View file

@ -35,7 +35,6 @@ pub async fn create_user(ctx: KernelContext, user: User) -> Result<(), CreateUse
if db_err.code().unwrap() == "2067" {
Err(CreateUserErr::HandleOrEmailNotUnique)
} else {
dbg!(&err);
Err(CreateUserErr::DatabaseErr(db_err.to_string()))
}
}