Skip to content

Commit

Permalink
chore: expend the path information about current profile being used
Browse files Browse the repository at this point in the history
  • Loading branch information
jason19970210 committed Feb 10, 2025
1 parent 2ccc765 commit 1c9ee9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ func (c colimaApp) startWithRuntime(conf config.Config) ([]environment.Container
func (c colimaApp) Start(conf config.Config) error {
ctx := context.WithValue(context.Background(), config.CtxKey(), conf)

log.Println("starting", config.CurrentProfile().DisplayName)
// this tells the full path of current profile being used, instead of misunderstanding it as a template default profile
log.Printf("starting with config file: %s\n", config.CurrentProfile().File())

var containers []environment.Container
if !environment.IsNoneRuntime(conf.Runtime) {
Expand Down

0 comments on commit 1c9ee9a

Please sign in to comment.