Skip to content

Commit

Permalink
fix debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Steinke committed Aug 29, 2021
1 parent cceb264 commit 17c07b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/julia.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ func (b Julia) GetMissingPackages() ([]string, error) {
}
logrus.WithField("output", string(stdout)).Debug("julia stdout")
installedFormulae := strings.Split(strings.Trim(string(stdout), "\n"), "\n")[1:]
logrus.WithField("output", installedFormulae).Debug("julia installed formulae")
logrus.WithField("output", installedFormulae).Debug("julia installed modules")
installedMap := map[string]bool{}
for _, p := range installedFormulae {
logrus.WithField("output", p).Error("julia installed formulae")
logrus.WithField("output", p).Debug("processing julia installed module")
words := strings.Fields(p)
installedMap[words[1]] = true
}
Expand Down

0 comments on commit 17c07b4

Please sign in to comment.