Zap Concepts: Difference between revisions

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


The supported logging levels are: .... Errors require special attention. More details are available in the [[#Logging_Levels|Logging Levels]] section.
The supported logging levels are: .... Errors require special attention. More details are available in the [[#Logging_Levels|Logging Levels]] section.
Child loggers.


=Logging Levels=
=Logging Levels=

Revision as of 19:54, 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. 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.

There are two APIs, Logger and SugaredLogger.

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

Child loggers.

Logging Levels