Skip to content

Commit

Permalink
Fixing error message (#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
codatoz authored May 2, 2024
1 parent c88a0ec commit bf8dd24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/plugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func init() {

if _, err := os.Stat(globalPluginFolder); err != nil {
if err := os.MkdirAll(globalPluginFolder, os.ModePerm); err != nil {
hclog.L().Error("Error creating global Raito folder %q. Make sure permissions are set correctly: %s", globalPluginFolder, err.Error())
hclog.L().Error(fmt.Sprintf("Error creating global Raito folder %q. Make sure permissions are set correctly: %s", globalPluginFolder, err.Error()))
}
}
}
Expand Down

0 comments on commit bf8dd24

Please sign in to comment.