mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
chore(error): Remove unused backtrace warning
Technically, this also fixes a bug with an extra newline when building with `debug` but that is a pretty minor cosmetic issue. It is unclear if `backtrace` has a trailing newline or not, so I left that as-is.
This commit is contained in:
parent
b42e2baf59
commit
ca29e4760c
1 changed files with 9 additions and 13 deletions
|
@ -439,21 +439,17 @@ pub struct Error {
|
|||
pub info: Vec<String>,
|
||||
pub(crate) source: Option<Box<dyn error::Error + Send + Sync>>,
|
||||
wait_on_exit: bool,
|
||||
backtrace: Backtrace,
|
||||
backtrace: Option<Backtrace>,
|
||||
}
|
||||
|
||||
impl Display for Error {
|
||||
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
||||
#[cfg(feature = "debug")]
|
||||
{
|
||||
writeln!(f, "{}", self.message.formatted())?;
|
||||
// Assuming `self.message` already has a trailing newline, from `try_help` or similar
|
||||
write!(f, "{}", self.message.formatted())?;
|
||||
if let Some(backtrace) = self.backtrace.as_ref() {
|
||||
writeln!(f)?;
|
||||
writeln!(f, "Backtrace:")?;
|
||||
writeln!(f, "{}", self.backtrace)?;
|
||||
}
|
||||
#[cfg(not(feature = "debug"))]
|
||||
{
|
||||
Display::fmt(&self.message.formatted(), f)?;
|
||||
writeln!(f, "{}", backtrace)?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
@ -1182,8 +1178,8 @@ struct Backtrace(backtrace::Backtrace);
|
|||
|
||||
#[cfg(feature = "debug")]
|
||||
impl Backtrace {
|
||||
fn new() -> Self {
|
||||
Self(backtrace::Backtrace::new())
|
||||
fn new() -> Option<Self> {
|
||||
Some(Self(backtrace::Backtrace::new()))
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1201,8 +1197,8 @@ struct Backtrace;
|
|||
|
||||
#[cfg(not(feature = "debug"))]
|
||||
impl Backtrace {
|
||||
fn new() -> Self {
|
||||
Self
|
||||
fn new() -> Option<Self> {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue