Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zcong1993/debugo
debug for golang
https://github.com/zcong1993/debugo
Last synced: about 23 hours ago
JSON representation
debug for golang
- Host: GitHub
- URL: https://github.com/zcong1993/debugo
- Owner: zcong1993
- License: mit
- Created: 2018-09-12T03:36:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-29T15:23:06.000Z (almost 6 years ago)
- Last Synced: 2023-07-27T22:49:23.970Z (over 1 year ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# debugo [![Go Report Card](https://goreportcard.com/badge/github.com/zcong1993/debugo)](https://goreportcard.com/report/github.com/zcong1993/debugo) [![CircleCI branch](https://img.shields.io/circleci/project/github/zcong1993/debugo/master.svg)](https://circleci.com/gh/zcong1993/debugo/tree/master) [![codecov](https://codecov.io/gh/zcong1993/debugo/branch/master/graph/badge.svg)](https://codecov.io/gh/zcong1993/debugo)
> debug for golang
## Install
```bash
$ go get -v github.com/zcong1993/debugo
```## Usage
see [example](./_example)
```go
package mainimport (
"github.com/zcong1993/debugo"
)var debugMain = debugo.NewDebug("main")
// DEBUG=main go run main.go
func main() {
debugMain.Debugf("debug main")
}
```## License
MIT © zcong1993