common-tg-service 1.3.133 → 1.3.134
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.
|
@@ -3475,10 +3475,11 @@ class TelegramManager {
|
|
|
3475
3475
|
const user = candidate.dialog.entity;
|
|
3476
3476
|
const chatId = user.id.toString();
|
|
3477
3477
|
try {
|
|
3478
|
+
this.logger.info(this.phoneNumber, `Analyzing (${i + 1} of ${topCandidates.length}) chat ${chatId}...`);
|
|
3478
3479
|
return await this.analyzeChatEngagement(chatId, user, weights, now, ACTIVITY_WINDOWS);
|
|
3479
3480
|
}
|
|
3480
3481
|
catch (error) {
|
|
3481
|
-
this.logger.warn(this.phoneNumber, `Error analyzing chat ${chatId}:`, error.message);
|
|
3482
|
+
this.logger.warn(this.phoneNumber, `Error analyzing (${i + 1} of ${topCandidates.length}) chat ${chatId}:`, error.message);
|
|
3482
3483
|
return null;
|
|
3483
3484
|
}
|
|
3484
3485
|
}));
|