Zap Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 19: Line 19:


Child loggers.
Child loggers.
Implementation: zap and zap core.


=Logging Levels=
=Logging Levels=

Revision as of 20:07, 13 March 2024

Internal

TODO

Deplete from Zap_Concepts_TODEPLETE

Overview

Zap is a logging framework for Go. It provides fast, structured, leveled logging.

Logging is performing by creating a Logger object and using its logging API. There are actually two APIs, Logger and SugaredLogger.

Each logging invocation creates a log event with key/value pairs. What about the log message?. Depending on the encoder?, the rendering of the log events can be controlled. Rendering.

There is no global logger that can be used right away, though one can be configured.

The supported logging levels are: .... Errors require special attention. More details are available in the Logging Levels section.

Child loggers.

Implementation: zap and zap core.

Logging Levels