remove debugging output

This commit is contained in:
Stephen Chang 2015-05-14 19:18:36 +00:00
parent 1925e81cc9
commit 1aee1f2d8b

View File

@ -41,14 +41,11 @@
(sync (irc-connect/internal)) (sync (irc-connect/internal))
(join-channels)) (join-channels))
(sleep 60) (sleep 60)
(loop))))) (loop))))))
(printf "conn: ~a\n" current-irc-connection))
(define (join-channels) (define (join-channels)
(printf "join: ~a\n" current-irc-connection)
(for ([c irc-channels]) (irc-join-channel current-irc-connection c))) (for ([c irc-channels]) (irc-join-channel current-irc-connection c)))
(define (irc-paste msg) (define (irc-paste msg)
(printf "paste: ~a\n" current-irc-connection)
(for ([c irc-channels]) (irc-send-message current-irc-connection c msg))) (for ([c irc-channels]) (irc-send-message current-irc-connection c msg)))