• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.gitignoreH A D28-Jun-2017288

.travis.ymlH A D28-Jun-2017279

LICENSEH A D28-Jun-2017755

README.mdH A D28-Jun-20171.2 KiB

doc.goH A D28-Jun-20171 KiB

goclean.shH A D28-Jun-20171.3 KiB

interface.goH A D28-Jun-20172.1 KiB

log.goH A D28-Jun-201713.9 KiB

README.md

1btclog
2======
3
4[![Build Status](http://img.shields.io/travis/btcsuite/btclog.svg)](https://travis-ci.org/btcsuite/btclog)
5[![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
6[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/btcsuite/btclog)
7
8Package btclog defines a logger interface and provides a default implementation
9of a subsystem-aware leveled logger implementing the same interface.
10
11## Installation
12
13```bash
14$ go get github.com/btcsuite/btclog
15```
16
17## GPG Verification Key
18
19All official release tags are signed by Conformal so users can ensure the code
20has not been tampered with and is coming from the btcsuite developers.  To
21verify the signature perform the following:
22
23- Download the public key from the Conformal website at
24  https://opensource.conformal.com/GIT-GPG-KEY-conformal.txt
25
26- Import the public key into your GPG keyring:
27  ```bash
28  gpg --import GIT-GPG-KEY-conformal.txt
29  ```
30
31- Verify the release tag with the following command where `TAG_NAME` is a
32  placeholder for the specific tag:
33  ```bash
34  git tag -v TAG_NAME
35  ```
36
37## License
38
39Package btclog is licensed under the [copyfree](http://copyfree.org) ISC
40License.
41