Skip to content

Commit eb518a2

Browse files
committed
adjust logging
1 parent 634eb42 commit eb518a2

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/commands/global/emote_select.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ async fn handle_interaction(
337337
interaction: Arc<MessageComponentInteraction>,
338338
selection: &mut Selection,
339339
) -> Result<Option<InteractionResult>, HandlerError> {
340-
trace!("incoming interaction: {:?}", interaction);
341340
match Ids::try_from(interaction.data.custom_id.as_str()) {
342341
Ok(Ids::InputTargetBtn) => {
343342
debug!("target input");

src/commands/global/server_settings.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ async fn handle_interaction(
114114
interaction: Arc<MessageComponentInteraction>,
115115
guild: &mut DbGuild,
116116
) -> Result<Option<DbGuild>, HandlerError> {
117-
trace!("incoming interactions: {:?}", interaction);
118117
match Ids::try_from(interaction.data.custom_id.as_str()) {
119118
Ok(Ids::GenderSelect) => {
120119
let value = &interaction.data.values[0];

src/commands/global/user_settings.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ async fn handle_interaction(
9898
interaction: Arc<MessageComponentInteraction>,
9999
user: &mut DbUser,
100100
) -> Result<Option<DbUser>, HandlerError> {
101-
trace!("incoming interactions: {:?}", interaction);
102101
match Ids::try_from(interaction.data.custom_id.as_str()) {
103102
Ok(Ids::GenderSelect) => {
104103
let value = &interaction.data.values[0];

0 commit comments

Comments
 (0)