Merge pull request #4060 from leandrojofre/relieve-group-chat-console Clean console debugs for group chats
Signed| @@ -436,7 +436,6 @@ export function getGroupDepthPrompts(groupId, characterId) { | ||
| 436 | 436 | * @returns {{description: string, personality: string, scenario: string, mesExamples: string}} Group character cards combined |
| 437 | 437 | */ |
| 438 | 438 | export function getGroupCharacterCards(groupId, characterId) { |
| 439 | - console.debug('getGroupCharacterCards entered for group: ', groupId); | |
| 440 | 439 | const group = groups.find(x => x.id === groupId); |
| 441 | 440 | |
| 442 | 441 | if (!group || !group?.generation_mode || !Array.isArray(group.members) || !group.members.length) { |
| @@ -507,7 +506,6 @@ export function getGroupCharacterCards(groupId, characterId) { | ||
| 507 | 506 | } |
| 508 | 507 | |
| 509 | 508 | if (group.disabled_members.includes(member) && characterId !== index && group.generation_mode !== group_generation_mode.APPEND_DISABLED) { |
| 510 | - console.debug(`Skipping disabled group member: ${member}`); | |
| 511 | 509 | continue; |
| 512 | 510 | } |
| 513 | 511 | |