AuditLogEvent.ChannelUpdate getting logs for only 1 channel and not all channels

const guild_channel_update_audit_logs = await new_channel.guild.fetchAuditLogs({ type: AuditLogEvent.ChannelUpdate, limit: 1 });
If I have two TextChannels called
secret
and
secret2
, why does the above code only get the logs for
secret
and not also
secret2
? Is this suppose to happen?
Was this page helpful?