chore: logging
This commit is contained in:
parent
63369157b3
commit
28b69b572b
@ -3,6 +3,7 @@ package config
|
|||||||
import (
|
import (
|
||||||
"encoding"
|
"encoding"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log/slog"
|
||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -22,10 +23,14 @@ func (c *Config) GetPassword() (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if c.Password != "" {
|
if c.Password != "" {
|
||||||
|
slog.Debug("read password in config")
|
||||||
|
|
||||||
return c.Password, nil
|
return c.Password, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if c.PasswordFile != "" {
|
if c.PasswordFile != "" {
|
||||||
|
slog.Debug("read password file in config")
|
||||||
|
|
||||||
return string(c.PasswordFile), nil
|
return string(c.PasswordFile), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user