Zap Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Tag: Reverted
No edit summary
Tag: Manual revert
 
(10 intermediate revisions by the same user not shown)
Line 5: Line 5:
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
go get -u go.uber.org/zap
go get -u go.uber.org/zap
</syntaxhighlight>
=Typical Usage=
<syntaxhighlight lang='go'>
import "go.uber.org/zap"
func main() {
var config zap.Config
var logger *zap.Logger
var sugaredLogger *zap.SugaredLogger
outputPath := "stderr" // ... or a local path
config = zap.NewDevelopmentConfig()
config.OutputPaths = []string{outputPath}
config.ErrorOutputPaths = []string{outputPath}
logger, err := config.Build()
if err != nil {
  panic(err)
}
sugaredLogger = logger.Sugar()
sugaredLogger.Infof("somehting")
}
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 20:37, 14 March 2024

Internal

Installation

In the directory that contains go.mod:

go get -u go.uber.org/zap