remove commented out code

This commit is contained in:
Vilmos Zsombor TANCZOS 2025-05-02 16:24:42 +02:00
parent 149321ae10
commit fecf977978

View file

@ -48,16 +48,6 @@ async fn on_error(error: poise::FrameworkError<'_, KBotData, CommandError>) {
error!("Error in command `{}`: {}", ctx.command().name, error,);
let _ = ctx.say("Failed to run command.".to_string()).await;
}
// poise::FrameworkError::ArgumentParse {
// error, input, ctx, ..
// } => {
// debug!(
// "Failed to parse argument `{:?}` for command `{}`: {}",
// input,
// ctx.command().name,
// error
// );
// }
error => {
if let Err(e) = poise::builtins::on_error(error).await {
error!("Error while handling error: {}", e);