golang-github-bep-logg 0.4.0-1 source package in Ubuntu

Changelog

golang-github-bep-logg (0.4.0-1) unstable; urgency=medium

  * New upstream version 0.4.0

 -- Anthony Fok <email address hidden>  Thu, 07 Dec 2023 12:57:36 -0700

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
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-github-bep-logg_0.4.0-1.dsc 2.5 KiB ea70d9315cf8eaebc85010ef5ef4ce6f76da82a66344a6adfb4ba5d3ae4a9239
golang-github-bep-logg_0.4.0.orig.tar.gz 23.9 KiB 25cd9041e8ca00ef1827640b535d3dd314c0196f918c31c2be3239192f8ad449
golang-github-bep-logg_0.4.0-1.debian.tar.xz 2.9 KiB a073b11e45e315c5c76a74d67efa4ead05d16612c2ef5a5f7327617920d658b0

Available diffs

No changes file available.

Binary packages built by this source

golang-github-bep-logg-dev: fast and structured logging package for Go

 This is a fork of the exellent Apex Log (https://github.com/apex/log)
 library.
 .
 Main changes:
 .
  * Trim unneeded dependencies.
  * Make Fields into a slice to preserve log order.
  * Split the old Interface in two and remove all but one Log method (see
    below).
  * This allows for lazy creation of messages in Log(fmt.Stringer) and
    ignoring fields added in LevelLoggers with levels below the Loggers.
  * The pointer passed to HandleLog is not safe to use outside of the
    current log chain, and needs to be cloned with Clone first if that's
    needed.
 .
 This is probably the very fastest structured log library when logging is
 disabled.