lib/_data_ingestion/tanos-jlpt: report sql errors

This commit is contained in:
2025-05-14 17:12:30 +02:00
parent 59e8db5add
commit 96f52b5860

View File

@@ -123,7 +123,9 @@ Future<Map<String, Set<int>>> resolveAllEntries(
if (resolved != null) {
result[word.jlptLevel]!.add(resolved);
}
} catch (e) {}
} catch (e) {
print('ERROR: $e');
}
}
return result;