Skip to content
Snippets Groups Projects
Commit bceed3c8 authored by 🥺's avatar 🥺 :transgender_flag:
Browse files

dont debug print startup admin command content body

parent b89d2cec
No related branches found
No related tags found
1 merge request!565Strawberry/misc
......@@ -92,12 +92,12 @@ fn startup_command_error(i: usize, content: &RoomMessageEventContent) -> Result<
#[cfg(not(feature = "console"))]
#[implement(super::Service)]
fn startup_command_output(i: usize, content: &RoomMessageEventContent) -> Result<()> {
info!("Startup command #{i} completed:\n{:#?}", content.body());
info!("Startup command #{i} completed:\n{:#}", content.body());
Ok(())
}
#[cfg(not(feature = "console"))]
#[implement(super::Service)]
fn startup_command_error(i: usize, content: &RoomMessageEventContent) -> Result<()> {
Err!(error!("Startup command #{i} failed:\n{:#?}", content.body()))
Err!(error!("Startup command #{i} failed:\n{:#}", content.body()))
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment