Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2190b10

Browse files
committedFeb 1, 2024
Add debug output of the entire runtime when launching
Signed-off-by: Ryan Bottriell <[email protected]>
1 parent 4b19d9c commit 2190b10

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)
Please sign in to comment.