mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
feat: "exec" command to start processes inside remote containers (#139)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package log
|
||||
|
||||
import (
|
||||
"log/slog"
|
||||
"os"
|
||||
"slices"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func InitLoggerFromEnv() {
|
||||
debugValues := []string{"1", "true", "yes"}
|
||||
if slices.Contains(debugValues, strings.ToLower(os.Getenv("DEBUG"))) {
|
||||
logger := slog.New(NewSlogTextHandler(os.Stderr, &slog.HandlerOptions{
|
||||
Level: slog.LevelDebug,
|
||||
}))
|
||||
slog.SetDefault(logger)
|
||||
}
|
||||
slog.Debug("logger initialized")
|
||||
}
|
||||
Reference in New Issue
Block a user