golang-go.uber-zap 1.26.0-1 source package in Ubuntu

Changelog

golang-go.uber-zap (1.26.0-1) unstable; urgency=medium

  * Team upload
  * Sync from experimental to unstable.

 -- Anton Gladky <email address hidden>  Sun, 08 Oct 2023 22:10:46 +0200

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-go.uber-zap_1.26.0-1.dsc 2.4 KiB b433e44391eceec73ef245d59da3c2f2e88cf61e6dc582f8fc57b1c000d5fef0
golang-go.uber-zap_1.26.0.orig.tar.gz 175.1 KiB 68792db9d56ce808cc1384939fea16804b1ab9ec1728dd8e3ca5f12c800bb9c6
golang-go.uber-zap_1.26.0-1.debian.tar.xz 4.3 KiB 0dbd7e04f645e4c7c8d319e532c0783657f3417cbd9b84973a2ed526ca98fbdf

Available diffs

No changes file available.

Binary packages built by this source

golang-go.uber-zap-dev: Blazing fast, structured, leveled logging in Go

 Package zap provides fast, structured, leveled logging.
 .
 For applications that log in the hot path, reflection-based
 serialization and string formatting are prohibitively expensive,
 they're CPU-intensive and make many small allocations. Put
 differently, using json.Marshal and fmt.Fprintf to log tons of
 interface{} makes your application slow.
 .
 Zap takes a different approach. It includes a reflection-free,
 zero-allocation JSON encoder, and the base Logger strives to avoid
 serialization overhead and allocations wherever possible. By
 building the high-level SugaredLogger on that foundation, zap lets
 users choose when they need to count every allocation and when
 they'd prefer a more familiar, loosely typed API.