fix: be more clear in info command
This commit is contained in:
parent
7c2f637184
commit
3bd9051a67
1 changed files with 3 additions and 2 deletions
|
@ -3,6 +3,7 @@ use std::process::exit;
|
|||
use clap::{Parser, Subcommand};
|
||||
use log::{debug, error, info, trace, warn};
|
||||
|
||||
use colored::Colorize;
|
||||
use crate::CONFIG;
|
||||
use crate::package::identifier::PackageIdentifier;
|
||||
use crate::package::Package;
|
||||
|
@ -124,8 +125,8 @@ impl Command {
|
|||
info!("authors: {}", env!("CARGO_PKG_AUTHORS"));
|
||||
|
||||
info!("");
|
||||
info!("If you can't seem to figure something out, use debug!");
|
||||
trace!("Trace should really only be used by PKGR devs.");
|
||||
info!("If you can't seem to figure something out, use environment variable: PKGR_LOG_LEVEL=debug");
|
||||
trace!("{}", "The trace log level should really only be used by PKGR devs.".red());
|
||||
}
|
||||
}
|
||||
#[cfg(debug_assertions)]
|
||||
|
|
Loading…
Reference in a new issue