Improve logging

This commit is contained in:
Carl Pearson
2024-10-04 05:20:25 -06:00
parent e2c44ca32a
commit 91ed7cbc0d
4 changed files with 39 additions and 57 deletions

View File

@@ -16,7 +16,7 @@ import (
func ensureDirFor(path string) error {
dir := filepath.Dir(path)
fmt.Println("Create", dir)
log.Debugln("Create", dir)
return os.MkdirAll(dir, 0700)
}