All public logs

Jump to navigation Jump to search

Combined display of all available logs of NovaOrdis Knowledge Base. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 20:10, 22 January 2024 Ovidiu talk contribs created page Zap Workbench (Created page with "=Internal= =Example= <syntaxhighlight lang='go'> package main import ( "bufio" "fmt" "os" "strings" "go.uber.org/zap" "go.uber.org/zap/zapcore" ) func main() { level := zap.NewAtomicLevelAt(zap.DebugLevel) var config zap.Config var logger *zap.Logger config = zap.NewDevelopmentConfig() config.Level = level logger, err := config.Build() if err != nil { panic(err) } sLogger := logger.Sugar() commandLoop(sLogger, &level) } func commandLoop(sLogger *zap...")