A PLC Mirror written in Rust
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: report error count properly

Mia f812b525 b6bd2164

+4 -1
+4 -1
src/import.rs
··· 40 40 errors.len() 41 41 ); 42 42 43 - // todo: report errors 43 + if !errors.is_empty() { 44 + error!(log, "{} entries failed to decode", errors.len()); 45 + } 46 + 44 47 for entry in &entries { 45 48 if let Err(e) = insert_did_and_op(&conn, entry).await { 46 49 error!(log, "failed to insert operation for did {}: {e}", entry.did);