mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Modified startup message
This commit is contained in:
parent
bce4858b9e
commit
c8e45ab690
1 changed files with 5 additions and 5 deletions
10
src/main.rs
10
src/main.rs
|
@ -224,11 +224,11 @@ fn setup(args: &[String]) -> Setup {
|
|||
setup_logging(verbose);
|
||||
|
||||
info!(
|
||||
"librespot {} ({}). Built on {}. Build ID: {}",
|
||||
version::SHA_SHORT,
|
||||
version::COMMIT_DATE,
|
||||
version::BUILD_DATE,
|
||||
version::BUILD_ID
|
||||
"librespot {semver} {sha} (Built on {build_date}, Build ID: {build_id})",
|
||||
semver = version::SEMVER,
|
||||
sha = version::SHA_SHORT,
|
||||
build_date = version::BUILD_DATE,
|
||||
build_id = version::BUILD_ID
|
||||
);
|
||||
|
||||
let backend_name = matches.opt_str("backend");
|
||||
|
|
Loading…
Reference in a new issue