golang-go.uber-zap 1.23.0-1 source package in Ubuntu
Changelog
golang-go.uber-zap (1.23.0-1) unstable; urgency=medium * Team upload. * New upstream version 1.23.0 * Reorder fields in debian/control and debian/copyright * Change Section from devel to golang * Update Maintainer email address to <email address hidden> * Use dh-sequence-golang instead of dh-golang and --with=golang * debian/rules: Invoke dh with --builddirectory=_build * Drop -dev package’s unneeded dependency on ${shlibs:Depends} * Mark library package with "Multi-Arch: foreign" * Bump Standards-Version to 4.6.1 (no change) * Update versioned dependencies as per go.mod * Refresh Debian patches -- Anthony Fok <email address hidden> Fri, 28 Oct 2022 09:50:49 -0600
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 | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | universe | misc | |
Lunar | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
golang-go.uber-zap_1.23.0-1.dsc | 2.4 KiB | 2383efb86a8b1e5bca18a036f72f12c93c4bd553c2e3a696185b11e09c15432e |
golang-go.uber-zap_1.23.0.orig.tar.gz | 162.6 KiB | 6af64f15ce9488cb3d0fac1c3fa0c548e2d18699943b6a10859051e62f0d6d22 |
golang-go.uber-zap_1.23.0-1.debian.tar.xz | 4.2 KiB | 4e7fbb943b8b4cf3fb2714b39f98525c1e50d58660ab547a40a3f213c4efa00e |
Available diffs
- diff from 1.20.0-1 to 1.23.0-1 (73.4 KiB)
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.