Fix log message

This commit is contained in:
AsamK 2025-02-07 18:21:24 +01:00
parent b579935846
commit 8aa71c132f

View file

@ -40,7 +40,7 @@ public class KeyValueStore {
try (final var connection = database.getConnection()) {
return getEntry(connection, key);
} catch (SQLException e) {
throw new RuntimeException("Failed read from pre_key store", e);
throw new RuntimeException("Failed read from key_value store", e);
}
}