Charles Law
Results
2
issues of
Charles Law
I have a simple logger setup: ``` import logging "github.com/op/go-logging" func main() { ... log := logging.MustGetLogger(name) // Setup the logger logBackend := logging.NewLogBackend(os.Stdout, "", 0) var format = logging.MustStringFormatter(...
I'd like to be able to disable 0mq's signal handling and only use Go's signal handling. It sounds like this might be possible based on http://zguide.zeromq.org/page:all#Handling-Interrupt-Signals This would make writing...