# HG changeset patch # User Chris Jones # Date 1355693863 25200 # Node ID 5d721a5655032f8fd99a994732958bd4410eea18 # Parent 24231ff0016cfd58037b644eb76ed999c0f14abe Use the new logging setup from the example program. diff -r 24231ff0016c -r 5d721a565503 examples/interact.go --- a/examples/interact.go Sun Dec 16 14:07:14 2012 -0700 +++ b/examples/interact.go Sun Dec 16 14:37:43 2012 -0700 @@ -8,10 +8,19 @@ xmpp ".." "flag" "fmt" + "io" "log" "os" ) +func init() { + r, w := io.Pipe() + go io.Copy(os.Stdout, r) + xmpp.Debug = log.New(w, "debug: ", 0) + xmpp.Info = log.New(w, "info: ", 0) + xmpp.Warn = log.New(w, "warn: ", 0) +} + // Demonstrate the API, and allow the user to interact with an XMPP // server via the terminal. func main() {