Skip to content

Commit 6178b3d

Browse files
omarmahamidtzolov
authored andcommitted
Fix CassandraVectorStoreConfig logger name
aligne logger name with the className
1 parent be6081f commit 6178b3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vector-stores/spring-ai-cassandra/src/main/java/org/springframework/ai/vectorstore/CassandraVectorStoreConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public final class CassandraVectorStoreConfig implements AutoCloseable {
7979

8080
public static final int DEFAULT_ADD_CONCURRENCY = 16;
8181

82-
private static final Logger logger = LoggerFactory.getLogger(CassandraVectorStore.class);
82+
private static final Logger logger = LoggerFactory.getLogger(CassandraVectorStoreConfig.class);
8383

8484
record Schema(String keyspace, String table, List<SchemaColumn> partitionKeys, List<SchemaColumn> clusteringKeys,
8585
String content, String embedding, String index, Set<SchemaColumn> metadataColumns) {

0 commit comments

Comments
 (0)