Update subproject commit reference in skills directory and remove logging from get_session_token function for improved security

This commit is contained in:
Steven Enamakel
2026-02-10 16:22:20 +05:30
parent 81c61fac12
commit a7e208a7cb
2 changed files with 1 additions and 2 deletions
+1 -1
Submodule skills updated: db1865622e...1aa59d8483
@@ -83,7 +83,6 @@ pub fn register<'js>(ctx: &Ctx<'js>, ops: &Object<'js>, timer_state: Arc<RwLock<
ops.set("get_session_token", Function::new(ctx.clone(), || -> String {
let token = crate::commands::auth::SESSION_SERVICE.get_token().unwrap_or_default();
log::info!("[js] get_session_token: {}", token);
return token;
}))?;