Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/execution/indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::collections::{HashMap, HashSet};

use anyhow::Result;
use futures::future::{join_all, try_join, try_join_all};
use log::error;
use log::{debug, error};
use serde::Serialize;
use sqlx::PgPool;

Expand Down Expand Up @@ -565,6 +565,7 @@ async fn update_source(
let result = update_source_entry(plan, source_op_idx, schema, &key, pool).await;
if let Err(e) = result {
error!("Error indexing source row: {}", e);
debug!("Detailed error: {:?}", e);
}
}))
.await;
Expand Down