summaryrefslogtreecommitdiff
path: root/cacheDir.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-22 17:29:02 -0500
committerJeff Carr <[email protected]>2025-10-22 17:29:02 -0500
commit8b90f990ab783680962480993cad9cdf6bd683f5 (patch)
treee998f5161f674374a7bdfd4e0d66cfc7555c9ba7 /cacheDir.go
parenta42aa9f634043fe7963ce6458831dafd68e279a9 (diff)
remove logv0.0.31
Diffstat (limited to 'cacheDir.go')
-rw-r--r--cacheDir.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cacheDir.go b/cacheDir.go
index 370b619..feca9ab 100644
--- a/cacheDir.go
+++ b/cacheDir.go
@@ -13,10 +13,10 @@ package config
import (
"errors"
+ "fmt"
"os"
"go.wit.com/lib/ENV"
- "go.wit.com/log"
"google.golang.org/protobuf/proto"
)
@@ -49,7 +49,7 @@ func CreateCacheDirPB(pb proto.Message, appname string, protoname string) error
_, err := SetFilename(pb, fullname)
if err != nil {
- log.Info("lib/config PB file does not support Filename")
+ fmt.Println("lib/config PB file does not support Filename")
}
newver, curver, err := VersionCheckFile(pb, fullname)
_, _ = newver, curver