Skip to content

Commit

Permalink
fix: concat strings in debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
tbckr committed Sep 27, 2023
1 parent d381243 commit aeff520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func createPath(dirs ...string) (string, error) {
appPath := filepath.Join(dirs...)
// if app dir does not exist, create it
if _, err := os.Stat(appPath); errors.Is(err, os.ErrNotExist) {
slog.Debug("Creating directory: %s", appPath)
slog.Debug("Creating directory: " + appPath)
if err = os.MkdirAll(appPath, defaultDirPermissions); err != nil {
return "", err
}
Expand Down

0 comments on commit aeff520

Please sign in to comment.