Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
chore: add back traces when extracting the files from the box
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Mar 26, 2021
1 parent 30cc0e4 commit 789bcd7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cli/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,12 @@ func extractProfileServiceConfig(op *OpConfig, box *packr.Box) error {
return err
}
}

log.WithFields(log.Fields{
"file": p,
"dir": dir,
}).Trace("Extracting boxed file")

return ioutil.WriteFile(p, []byte(file.String()), 0644)
}

Expand Down

0 comments on commit 789bcd7

Please sign in to comment.