This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
The following commit(s) were added to refs/heads/main by this push:
new 40b27cbc Print version when initialized (#900)
40b27cbc is described below
commit 40b27cbcc1ddd8a6e62ac445ff88f0ce6daa49d4
Author: Semyon <[email protected]>
AuthorDate: Mon Sep 2 15:47:41 2024 +0200
Print version when initialized (#900)
---
native/core/src/lib.rs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/native/core/src/lib.rs b/native/core/src/lib.rs
index 4a647d96..36e63e39 100644
--- a/native/core/src/lib.rs
+++ b/native/core/src/lib.rs
@@ -86,7 +86,8 @@ pub extern "system" fn Java_org_apache_comet_NativeBase_init(
let java_vm = env.get_java_vm()?;
JAVA_VM.get_or_init(|| java_vm);
- info!("Comet native library initialized");
+ let comet_version = env!("CARGO_PKG_VERSION");
+ info!("Comet native library version {} initialized", comet_version);
Ok(())
})
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]