From 96f52b58604f621cc67773af910799b177744db7 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Wed, 14 May 2025 17:12:30 +0200 Subject: [PATCH] lib/_data_ingestion/tanos-jlpt: report sql errors --- lib/_data_ingestion/tanos-jlpt/resolve.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/_data_ingestion/tanos-jlpt/resolve.dart b/lib/_data_ingestion/tanos-jlpt/resolve.dart index 654d85f..f47c8a0 100644 --- a/lib/_data_ingestion/tanos-jlpt/resolve.dart +++ b/lib/_data_ingestion/tanos-jlpt/resolve.dart @@ -123,7 +123,9 @@ Future>> resolveAllEntries( if (resolved != null) { result[word.jlptLevel]!.add(resolved); } - } catch (e) {} + } catch (e) { + print('ERROR: $e'); + } } return result;