23 lines
678 B
Diff
23 lines
678 B
Diff
|
From cafbca996ec4a19f9f80bae109436e2dfc7149a4 Mon Sep 17 00:00:00 2001
|
||
|
From: Debarshi Ray <rishi@fedoraproject.org>
|
||
|
Date: Wed, 1 Mar 2023 19:41:56 +0100
|
||
|
Subject: [PATCH] cmd/root: Sprinkle a debug log
|
||
|
|
||
|
https://github.com/containers/toolbox/pull/1251
|
||
|
---
|
||
|
src/cmd/root.go | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/src/cmd/root.go b/src/cmd/root.go
|
||
|
index 9975ccc7a..2e7428a20 100644
|
||
|
--- a/src/cmd/root.go
|
||
|
+++ b/src/cmd/root.go
|
||
|
@@ -215,6 +215,7 @@ func migrate(cmd *cobra.Command, args []string) error {
|
||
|
logrus.Debug("Migrating to newer Podman")
|
||
|
|
||
|
if utils.IsInsideContainer() {
|
||
|
+ logrus.Debug("Migration not needed: running inside a container")
|
||
|
return nil
|
||
|
}
|
||
|
|