File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 2222- (Bugfix) Allow missing ` token ` key in License secret
2323- (Feature) Unify agency access
2424- (Feature) Change DBServer Cleanup Logic
25+ - (Feature) Set Logger format
2526
2627## [ 1.2.13] ( https://github.com/arangodb/kube-arangodb/tree/1.2.13 ) (2022-06-07)
2728- (Bugfix) Fix arangosync members state inspection
Original file line number Diff line number Diff line change 2020
2121package logging
2222
23- import "github.com/rs/zerolog/log"
23+ import (
24+ "os"
25+ "time"
2426
25- var global = NewFactory (log .Logger )
27+ "github.com/rs/zerolog"
28+ )
29+
30+ var global = NewFactory (zerolog .New (zerolog.ConsoleWriter {
31+ Out : os .Stdout ,
32+ TimeFormat : time .RFC3339Nano ,
33+ NoColor : true ,
34+ }).With ().Timestamp ().Logger ())
2635
2736func Global () Factory {
2837 return global
You can’t perform that action at this time.
0 commit comments