Struct LoggingErrorHandler

Source
pub struct LoggingErrorHandler { /* private fields */ }
Expand description

A handler that log all errors passed into it.

§Example

use teloxide::error_handlers::{ErrorHandler, LoggingErrorHandler};

LoggingErrorHandler::new().handle_error(()).await;
LoggingErrorHandler::with_custom_text("Omg1").handle_error(404).await;
LoggingErrorHandler::with_custom_text("Omg2").handle_error("Invalid data type!").await;

Implementations§

Source§

impl LoggingErrorHandler

Source

pub fn with_custom_text<T>(text: T) -> Arc<Self>
where T: Into<String>,

Creates LoggingErrorHandler with a meta text before a log.

The logs will be printed in this format: {text}: {:?}.

Examples found in repository?
examples/dispatching_features.rs (lines 101-103)
12async fn main() {
13    pretty_env_logger::init();
14    log::info!("Starting dispatching features bot...");
15
16    let bot = Bot::from_env();
17
18    let parameters = ConfigParameters {
19        bot_maintainer: UserId(0), // Paste your ID to run this bot.
20        maintainer_username: None,
21    };
22
23    let handler = Update::filter_message()
24        // You can use branching to define multiple ways in which an update will be handled. If the
25        // first branch fails, an update will be passed to the second branch, and so on.
26        .branch(
27            dptree::entry()
28                // Filter commands: the next handlers will receive a parsed `SimpleCommand`.
29                .filter_command::<SimpleCommand>()
30                // If a command parsing fails, this handler will not be executed.
31                .endpoint(simple_commands_handler),
32        )
33        .branch(
34            // Filter a maintainer by a user ID.
35            dptree::filter(|cfg: ConfigParameters, msg: Message| {
36                msg.from.map(|user| user.id == cfg.bot_maintainer).unwrap_or_default()
37            })
38            .filter_command::<MaintainerCommands>()
39            .endpoint(|msg: Message, bot: Bot, cmd: MaintainerCommands| async move {
40                match cmd {
41                    MaintainerCommands::Rand { from, to } => {
42                        let mut rng = rand::rngs::OsRng;
43                        let value: u64 = rng.gen_range(from..=to);
44
45                        bot.send_message(msg.chat.id, value.to_string()).await?;
46                        Ok(())
47                    }
48                }
49            }),
50        )
51        .branch(
52            // Filtering allow you to filter updates by some condition.
53            dptree::filter(|msg: Message| msg.chat.is_group() || msg.chat.is_supergroup())
54                .branch(
55                    // Filtering by mention allows to filter only `/repeat@my_bot` commands.
56                    // Use if you want to make sure that users refer specifically to your bot.
57                    // Same as filter_command, the next handlers will receive a parsed
58                    // `GroupCommand`.
59                    dptree::entry().filter_mention_command::<GroupCommand>().endpoint(
60                        |bot: Bot, msg: Message, cmd: GroupCommand| async move {
61                            match cmd {
62                                GroupCommand::Repeat { text } => {
63                                    bot.send_message(msg.chat.id, format!("You said: {text}"))
64                                        .await?;
65                                    Ok(())
66                                }
67                            }
68                        },
69                    ),
70                )
71                .branch(
72                    // An endpoint is the last update handler.
73                    dptree::endpoint(|msg: Message, bot: Bot| async move {
74                        log::info!("Received a message from a group chat.");
75                        bot.send_message(msg.chat.id, "This is a group chat.").await?;
76                        respond(())
77                    }),
78                ),
79        )
80        .branch(
81            // There are some extension filtering functions on `Message`. The following filter will
82            // filter only messages with dices.
83            Message::filter_dice().endpoint(|bot: Bot, msg: Message, dice: Dice| async move {
84                bot.send_message(msg.chat.id, format!("Dice value: {}", dice.value))
85                    .reply_to(msg)
86                    .await?;
87                Ok(())
88            }),
89        );
90
91    Dispatcher::builder(bot, handler)
92        // Here you specify initial dependencies that all handlers will receive; they can be
93        // database connections, configurations, and other auxiliary arguments. It is similar to
94        // `actix_web::Extensions`.
95        .dependencies(dptree::deps![parameters])
96        // If no handler succeeded to handle an update, this closure will be called.
97        .default_handler(|upd| async move {
98            log::warn!("Unhandled update: {upd:?}");
99        })
100        // If the dispatcher fails for some reason, execute this handler.
101        .error_handler(LoggingErrorHandler::with_custom_text(
102            "An error has occurred in the dispatcher",
103        ))
104        .enable_ctrlc_handler()
105        .build()
106        .dispatch()
107        .await;
108}
Source

pub fn new() -> Arc<Self>

A shortcut for LoggingErrorHandler::with_custom_text("Error".to_owned()).

Trait Implementations§

Source§

impl<E> ErrorHandler<E> for LoggingErrorHandler
where E: Debug,

Source§

fn handle_error(self: Arc<Self>, error: E) -> BoxFuture<'static, ()>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Erasable for T

Source§

const ACK_1_1_0: bool = true

Whether this implementor has acknowledged the 1.1.0 update to unerase’s documented implementation requirements. Read more
Source§

unsafe fn unerase(this: NonNull<Erased>) -> NonNull<T>

Unerase this erased pointer. Read more
Source§

fn erase(this: NonNull<Self>) -> NonNull<Erased>

Turn this erasable pointer into an erased pointer. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,