diff --git a/dalmdl/corefdb/corefdb.go b/dalmdl/corefdb/corefdb.go index be536a6f9c1c39936a5a7f89de21ed98e4bcd3f0..e4baed7e7a21ed534c452c958cccf72e0650a3f5 100644 --- a/dalmdl/corefdb/corefdb.go +++ b/dalmdl/corefdb/corefdb.go @@ -2,6 +2,7 @@ package corefdb import ( "errors" + "fmt" "os" "path/filepath" "strconv" @@ -53,9 +54,8 @@ var IsDebugModeOn bool func init() { databases.Setup(1, 1000, 1000) - loggermdl.LogError("FDBMODE", os.Getenv("FDBMODE")) if os.Getenv("FDBMODE") == "debug" { - loggermdl.LogError("fdb debug mode is on") + fmt.Println("fdb debug mode is on") IsDebugModeOn = true } }