File: control

package info (click to toggle)
golang-github-jedisct1-dlog 0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 92 kB
  • sloc: makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,587 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Source: golang-github-jedisct1-dlog
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Eric Dorland <eric@debian.org>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any,
               golang-github-hashicorp-go-syslog-dev
Rules-Requires-Root: no
Standards-Version: 4.4.1.1
Homepage: https://github.com/jedisct1/dlog
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-jedisct1-dlog
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-jedisct1-dlog.git
XS-Go-Import-Path: github.com/jedisct1/dlog
Testsuite: autopkgtest-pkg-go

Package: golang-github-jedisct1-dlog-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
         golang-github-hashicorp-go-syslog-dev
Description: Super simple logger for Go
 Go's standard logger is fairly limited. As result, kazilion alternatives
 loggers have been written.
 .
 All of these are wonderful. They can make your logs look colorful and
 pretty, buffer things in complicated ways, format data for ElasticSearch,
 and more.
 .
 Cool, but all I wanted is something super dumb, that just exposes
 log.Info(), log.Error() and a couple other standard levels.
 .
 I don't need a super flexible kitchen sink. Just something super basic
 and trivial to use. I just want it to handle different log levels, and
 be able to write simple logs to stderr, to a local file, to syslog and
 to the Windows event log.
 .
 So, here's one more logging library for Go. The dumbest of them
 all. Enjoy.