https://github.com/azer/debug
Tiny Debugging Tool For Golang
https://github.com/azer/debug
Last synced: 4 months ago
JSON representation
Tiny Debugging Tool For Golang
- Host: GitHub
- URL: https://github.com/azer/debug
- Owner: azer
- Created: 2013-07-01T11:27:09.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-11-16T00:49:14.000Z (over 11 years ago)
- Last Synced: 2025-08-14T02:43:46.707Z (10 months ago)
- Language: Go
- Homepage:
- Size: 134 KB
- Stars: 27
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## deprecated
I'm maintaining [logger](http://github.com/azer/logger) now.
## debug
Golang equivalent of [visionmedia/debug](http://github.com/visionmedia/debug)
foo.go:
```go
Debug("doing some work")
```
bar.go:
```go
Debug("doing more work")
```
qux.go:
```go
Debug("keeps doing more work")
```
**Example Outputs**
`DEBUG=*`

`DEBUG=foo,bar`

See `examples/` for more info.