3
0

Remove print() func

This commit is contained in:
Denis Arh
2019-10-16 18:41:36 +02:00
parent 34393edcea
commit e2a7038761
-1
View File
@@ -10,7 +10,6 @@ import (
func RecursiveDotEnvLoad() {
for _, loc := range []string{".env", "../.env", "../../.env"} {
if _, err := os.Stat(loc); err == nil {
print("LOADING ENV", loc)
godotenv.Load(loc)
}
}