Compare commits

..

No commits in common. "872338c83f97d2c4d72a598bf9b381e75de2f3b2" and "97b36966d554dde14c8a8fd57fd29e6175c44880" have entirely different histories.

View file

@ -1,5 +1,3 @@
use std::error::Error as _;
use autocrate::{
changelog::*,
config::{
@ -11,7 +9,7 @@ use autocrate::{
release::release,
serverapi::ApiCollection,
};
use libpt::log::{debug, error};
use libpt::log::error;
#[tokio::main]
async fn main() -> Result<()> {
@ -56,7 +54,6 @@ async fn main() -> Result<()> {
};
if let Some(err) = status {
error!("{err}");
debug!("{:#?}", err.source());
}
Ok(())
}