forked from mirrors/homebox
31b34241e0
* change /content/ -> /homebox/ * add cache to code generators * update env variables to set data storage * update env variables * set env variables in prod container * implement attachment post route (WIP) * get attachment endpoint * attachment download * implement string utilities lib * implement generic drop zone * use explicit truncate * remove clean dir * drop strings composable for lib * update item types and add attachments * add attachment API * implement service context * consolidate API code * implement editing attachments * implement upload limit configuration * improve error handling * add docs for max upload size * fix test cases
41 lines
847 B
Go
41 lines
847 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/hay-kot/homebox/backend/internal/config"
|
|
"github.com/rs/zerolog"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
// setupLogger initializes the zerolog config
|
|
// for the shared logger.
|
|
func (a *app) setupLogger() {
|
|
// Logger Init
|
|
// zerolog.TimeFieldFormat = zerolog.TimeFormatUnix
|
|
if a.conf.Log.Format != config.LogFormatJSON {
|
|
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr})
|
|
}
|
|
|
|
log.Level(getLevel(a.conf.Log.Level))
|
|
}
|
|
|
|
func getLevel(l string) zerolog.Level {
|
|
switch strings.ToLower(l) {
|
|
case "debug":
|
|
return zerolog.DebugLevel
|
|
case "info":
|
|
return zerolog.InfoLevel
|
|
case "warn":
|
|
return zerolog.WarnLevel
|
|
case "error":
|
|
return zerolog.ErrorLevel
|
|
case "fatal":
|
|
return zerolog.FatalLevel
|
|
case "panic":
|
|
return zerolog.PanicLevel
|
|
default:
|
|
return zerolog.InfoLevel
|
|
}
|
|
}
|