golang-github-gologme-log 1.3.0-2 source package in Ubuntu

Changelog

golang-github-gologme-log (1.3.0-2) unstable; urgency=medium

  * Source-only rebuild for testing migration.

 -- John Goerzen <email address hidden>  Wed, 16 Feb 2022 14:25:22 +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
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gologme-log_1.3.0-2.dsc 2.1 KiB cbb8032372b7e6555713cd707615cfdf030374aee7d46a7067bb53e1a55b3be2
golang-github-gologme-log_1.3.0.orig.tar.gz 7.6 KiB bc8749523542f0c649ed5c4df2ccb18d610133f14ccbc4395d7e2723321572a2
golang-github-gologme-log_1.3.0-2.debian.tar.xz 2.7 KiB 593c6b15c4ca94e725ecd770408078037b325fe92dfcc6c7e6f8fa08aa4dd98a

Available diffs

No changes file available.

Binary packages built by this source

golang-github-gologme-log-dev: A fork of the golang built in log package to add support for levels (library)

 This package is a drop in replacement for the built-in Go log package.
 All the functionality of the built-in package still exists and is
 unchanged. In addition, this package contains a series of small
 enhancements and additions. Namely, it adds five logging levels.
 .
 In addition to these five defined logging levels, users can also define
 their own arbitrary logging levels.
 .
 Unlike other loggers, these logging levels are not enabled in a chain.
 Meaning, once a level is enabled, say Warn, all levels above it are not
 also enabled. This package is implemented in such a way that users can
 individually turn on and turn off the various new logging levels.
 However, starting with v1.3.0 users can enable logging in a chain buy
 enabling logging levels by number (see below). If existing code uses the
 build-in log package, no change is needed to use this package.
 .
 Another feature that was added, based on comments seen on the various
 golang boards, is the ability to set the calldepth.