File: control

package info (click to toggle)
golang-github-alexcesaro-log 0.0~git20150915.61e6862-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 120 kB
  • sloc: makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,463 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
Source: golang-github-alexcesaro-log
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Francisco Vilmar Cardoso Ruviaro <francisco.ruviaro@riseup.net>
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any
Standards-Version: 4.5.0
Rules-Requires-Root: no
Homepage: https://github.com/alexcesaro/log
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-alexcesaro-log
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-alexcesaro-log.git
Testsuite: autopkgtest-pkg-go
XS-Go-Import-Path: github.com/alexcesaro/log

Package: golang-github-alexcesaro-log-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: Logging packages for Go (library)
 Package log provides a common interface for logging libraries.
 .
 This package contains:
  - buflog: provides a buffered logging class that accumulates logs in
    memory until the flush threshold is reached which release stored
    logs, the buffered logger then act as a normal logger.
  - golog: provides a customizable logging class which can be used as
    a standalone or as a building block for other loggers.
  - logtest: provides utilities for logging testing.
  - stdlog: provides simple and fast logging to the standard output
    (stdout) and is optimized for programs launched via a shell or cron.
 Logger is a common interface for logging libraries.