fixed logger

This commit is contained in:
Bojan Kucera 2025-06-07 09:44:17 -04:00
parent 4709887fef
commit e8485dd140
3 changed files with 48 additions and 23 deletions

View file

@ -440,7 +440,6 @@ export class ProxyService {
*/
private async validateProxiesInBackground(proxies: ProxyConfig[]): Promise<void> {
this.logger.info('Starting background proxy validation', { count: proxies.length });
this.logger.error('Background validation is not implemented yet, this is a placeholder function', { error: { message: 'Background validation not implemented' } });
const concurrency = 50; // Process 50 proxies concurrently
const chunks = this.chunkArray(proxies, concurrency);