We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b19d9c commit 2190b10Copy full SHA for 2190b10
crates/spfs-cli/cmd-enter/src/cmd_enter.rs
@@ -142,6 +142,8 @@ impl CmdEnter {
142
143
let mut runtime = self.load_runtime(config).await?;
144
145
+ tracing::debug!("entering runtime: {runtime:#?}");
146
+
147
if self.make_durable.enabled {
148
if runtime.is_durable() {
149
return Err(spfs::Error::from("runtime is already durable").into());
@@ -241,6 +243,7 @@ impl CmdEnter {
241
243
config: &spfs::Config,
242
244
) -> Result<Option<spfs::runtime::OwnedRuntime>> {
245
let runtime = self.load_runtime(config).await?;
246
247
if self.exit.enabled {
248
todo!()
249
} else if self.remount.enabled {
0 commit comments