v0.2.12-pre.002

This commit is contained in:
2026-08-27 08:38:22 +02:00
parent f7e4ea09bc
commit d1d683d101
50 changed files with 3424 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
// file: crates/ksp-app-solprices-desk/src/logging_runtime.rs
// version: 1
//! SOL Prices Desk Logging runtime identity helpers.
/// Creates the stable runtime identity for this SOL Prices Desk process launch.
pub(crate) fn launch_identity() -> ksp_core_lib::Result<ksp_logging_lib::LoggingRuntimeIdentity> {
let timestamp = format!("{}-p{}", chrono::Utc::now().format("%Y%m%d-%H%M%S%.3fZ"), std::process::id());
return ksp_logging_lib::LoggingRuntimeIdentity::new(crate::TRACING_TARGET, timestamp);
}