Small worktree scan style fixes (#36104)

Part of https://github.com/zed-industries/zed/issues/35780

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov 2025-08-13 14:29:53 +03:00 committed by GitHub
parent 81474a3de0
commit 8d63312eca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 37 additions and 24 deletions

View file

@ -251,7 +251,15 @@ pub fn main() {
return;
}
log::info!("========== starting zed ==========");
log::info!(
"========== starting zed version {}, sha {} ==========",
app_version,
app_commit_sha
.as_ref()
.map(|sha| sha.short())
.as_deref()
.unwrap_or("unknown"),
);
let app = Application::new().with_assets(Assets);