Skip to content

Commit 17c07b4

Browse files
author
Jan Steinke
committed
fix debug output
1 parent cceb264 commit 17c07b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/julia.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ func (b Julia) GetMissingPackages() ([]string, error) {
2424
}
2525
logrus.WithField("output", string(stdout)).Debug("julia stdout")
2626
installedFormulae := strings.Split(strings.Trim(string(stdout), "\n"), "\n")[1:]
27-
logrus.WithField("output", installedFormulae).Debug("julia installed formulae")
27+
logrus.WithField("output", installedFormulae).Debug("julia installed modules")
2828
installedMap := map[string]bool{}
2929
for _, p := range installedFormulae {
30-
logrus.WithField("output", p).Error("julia installed formulae")
30+
logrus.WithField("output", p).Debug("processing julia installed module")
3131
words := strings.Fields(p)
3232
installedMap[words[1]] = true
3333
}

0 commit comments

Comments
 (0)