You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It might have a default value of "proxy.log". Such as:
path, ok := os.LookupEnv("INTERFACER_LOG")
if !ok {
log.Printf(`"INTERFACE_LOG" was not provided; defaulting to "./proxy.log"`)
path = "./proxy.log"
} else if path == "" {
return nil, errors.New(`"INTERFACER_LOG" must not be empty"`)
}
I think INTERFACER_LOG should be a path to a file, instead of a path to a directory.
INTERFACER_LOG variable is fetched than passed here like this:
interfacer-proxy/logger/log.go
Line 16 in ec744a3
I can take care of this, but tell me what you think.
The text was updated successfully, but these errors were encountered: