golang-github-go-kit-log 0.2.1-1 source package in Ubuntu

Changelog

golang-github-go-kit-log (0.2.1-1) unstable; urgency=medium

  * Team upload
  * New upstream release
  * Bump Standards-Version to 4.6.1 (no changes)

 -- Daniel Swarbrick <email address hidden>  Fri, 09 Dec 2022 08:56:23 +0000

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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-go-kit-log_0.2.1-1.dsc 2.2 KiB 22fb1133c0384bbea51355b6d73d026dc8ed77638db222a2bfb2512da408fd7c
golang-github-go-kit-log_0.2.1.orig.tar.gz 29.9 KiB 0fa8e41027eb88c8c5b840af4f804f1c30df04ccbe94b8080916b5ab5d99b872
golang-github-go-kit-log_0.2.1-1.debian.tar.xz 2.6 KiB b2d71f028b99bd8d1d5682ed9ee137891a109042ed83335c9c1b423cc265004f

Available diffs

No changes file available.

Binary packages built by this source

golang-github-go-kit-log-dev: minimal and extensible structured logger (Go library)

 The log package provides a minimal interface for structured logging in
 services. It may be wrapped to encode conventions, enforce type-safety,
 provide leveled logging, and so on. It can be used for both typical
 application log events, and log-structured data streams.
 .
 Structured logging is, basically, conceding to the reality that logs are data,
 and warrant some level of schematic rigor. Using a stricter,
 key/value-oriented message format for logs, containing contextual and semantic
 information, makes it much easier to get insight into the operational activity
 of the systems. Consequently, package log is of the strong belief that "the
 benefits of structured logging outweigh the minimal effort involved
 (https://www.thoughtworks.com/radar/techniques/structured-logging)".