1
0
Fork 0
forked from wry/wry

logging: include version information

This commit is contained in:
Julian Orth 2024-04-10 11:22:17 +02:00
parent f35a7f691a
commit 14b344a1ae
5 changed files with 31 additions and 0 deletions

View file

@ -38,6 +38,7 @@ use {
oserror::OsError, queue::AsyncQueue, refcounted::RefCounted, run_toplevel::RunToplevel,
tri::Try,
},
version::VERSION,
video::drm::wait_for_sync_obj::WaitForSyncObj,
wheel::{Wheel, WheelError},
xkbcommon::XkbContext,
@ -122,6 +123,7 @@ fn start_compositor2(
test_future: Option<TestFuture>,
) -> Result<(), CompositorError> {
log::info!("pid = {}", uapi::getpid());
log::info!("version = {VERSION}");
init_fd_limit();
leaks::init();
clientmem::init()?;