@voltagent/core 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3168,16 +3168,9 @@ var RemoteLogProcessor = class {
3168
3168
  for (const log of this.pendingLogs) {
3169
3169
  this.actualProcessor.onEmit(log);
3170
3170
  }
3171
- this.logger?.debug(`[RemoteLogExport] Processed ${this.pendingLogs.length} pending logs`);
3172
3171
  this.pendingLogs = [];
3173
3172
  }
3174
3173
  this.initialized = true;
3175
- this.logger?.debug("[RemoteLogExport] Successfully initialized remote log export", {
3176
- url: `${baseUrl}/api/public/otel/v1/logs`,
3177
- maxQueueSize: this.config.maxQueueSize ?? 2048,
3178
- maxExportBatchSize: this.config.maxExportBatchSize ?? 512,
3179
- scheduledDelayMillis: this.config.scheduledDelayMillis ?? 5e3
3180
- });
3181
3174
  return true;
3182
3175
  } catch (error) {
3183
3176
  this.logger?.debug("[RemoteLogExport] Failed to initialize remote log export", { error });