Skip to content

Commit 5a2f728

Browse files
committed
Add debug output of the entire runtime when launching
Signed-off-by: Ryan Bottriell <[email protected]>
1 parent 329ee8c commit 5a2f728

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/spfs-cli/cmd-enter/src/cmd_enter.rs

+3
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ impl CmdEnter {
142142

143143
let mut runtime = self.load_runtime(config).await?;
144144

145+
tracing::debug!("entering runtime: {runtime:#?}");
146+
145147
if self.make_durable.enabled {
146148
if runtime.is_durable() {
147149
return Err(spfs::Error::from("runtime is already durable").into());
@@ -241,6 +243,7 @@ impl CmdEnter {
241243
config: &spfs::Config,
242244
) -> Result<Option<spfs::runtime::OwnedRuntime>> {
243245
let runtime = self.load_runtime(config).await?;
246+
tracing::debug!("entering runtime: {runtime:#?}");
244247
if self.exit.enabled {
245248
todo!()
246249
} else if self.remount.enabled {

0 commit comments

Comments
 (0)