mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
refactor(core): Convert verbose to debug logs (#10574)
This commit is contained in:
@@ -97,7 +97,7 @@ export class VectorStorePineconeInsert implements INodeType {
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData(0);
|
||||
this.logger.verbose('Executing data for Pinecone Insert Vector Store');
|
||||
this.logger.debug('Executing data for Pinecone Insert Vector Store');
|
||||
|
||||
const namespace = this.getNodeParameter('pineconeNamespace', 0) as string;
|
||||
const index = this.getNodeParameter('pineconeIndex', 0, '', { extractValue: true }) as string;
|
||||
|
||||
@@ -85,7 +85,7 @@ export class VectorStorePineconeLoad implements INodeType {
|
||||
};
|
||||
|
||||
async supplyData(this: IExecuteFunctions, itemIndex: number): Promise<SupplyData> {
|
||||
this.logger.verbose('Supplying data for Pinecone Load Vector Store');
|
||||
this.logger.debug('Supplying data for Pinecone Load Vector Store');
|
||||
|
||||
const namespace = this.getNodeParameter('pineconeNamespace', itemIndex) as string;
|
||||
const index = this.getNodeParameter('pineconeIndex', itemIndex, '', {
|
||||
|
||||
@@ -94,7 +94,7 @@ export class VectorStoreSupabaseInsert implements INodeType {
|
||||
methods = { listSearch: { supabaseTableNameSearch } };
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
this.logger.verbose('Executing data for Supabase Insert Vector Store');
|
||||
this.logger.debug('Executing data for Supabase Insert Vector Store');
|
||||
|
||||
const items = this.getInputData(0);
|
||||
const tableName = this.getNodeParameter('tableName', 0, '', { extractValue: true }) as string;
|
||||
|
||||
@@ -82,7 +82,7 @@ export class VectorStoreSupabaseLoad implements INodeType {
|
||||
methods = { listSearch: { supabaseTableNameSearch } };
|
||||
|
||||
async supplyData(this: IExecuteFunctions, itemIndex: number): Promise<SupplyData> {
|
||||
this.logger.verbose('Supply Supabase Load Vector Store');
|
||||
this.logger.debug('Supply Supabase Load Vector Store');
|
||||
|
||||
const tableName = this.getNodeParameter('tableName', itemIndex, '', {
|
||||
extractValue: true,
|
||||
|
||||
@@ -101,7 +101,7 @@ export class VectorStoreZepInsert implements INodeType {
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
this.logger.verbose('Executing data for Zep Insert Vector Store');
|
||||
this.logger.debug('Executing data for Zep Insert Vector Store');
|
||||
const items = this.getInputData(0);
|
||||
const collectionName = this.getNodeParameter('collectionName', 0) as string;
|
||||
const options =
|
||||
|
||||
@@ -84,7 +84,7 @@ export class VectorStoreZepLoad implements INodeType {
|
||||
};
|
||||
|
||||
async supplyData(this: IExecuteFunctions, itemIndex: number): Promise<SupplyData> {
|
||||
this.logger.verbose('Supplying data for Zep Load Vector Store');
|
||||
this.logger.debug('Supplying data for Zep Load Vector Store');
|
||||
|
||||
const collectionName = this.getNodeParameter('collectionName', itemIndex) as string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user