Remove dbg! statements

This commit is contained in:
2023-09-01 19:59:10 -04:00
parent 21cae62714
commit e50e165b87
3 changed files with 1 additions and 13 deletions

View File

@@ -26,9 +26,7 @@ pub async fn opml(
if let Some(field) = multipart.next_field().await? {
let import_id = Base62Uuid::new();
let file_name = field.file_name().map(|s| s.to_string());
dbg!(&file_name);
let bytes = field.bytes().await?;
dbg!(bytes.len());
let receiver = importer.import(import_id.as_uuid(), file_name, bytes).await;
{
let mut imports = imports.lock().await;