diff options
author | Boutade <thegoofist@protonmail.com> | 2019-09-26 09:01:45 -0500 |
---|---|---|
committer | Boutade <thegoofist@protonmail.com> | 2019-09-26 09:01:45 -0500 |
commit | d9a1f977b7595f4fd829ece4cfa52f9fe5dd76e9 (patch) | |
tree | 12603bd2577990fdea94f715510ea96f1625ee2e | |
parent | d68ab636b677733447ea129c59bf1bc315f7c7b5 (diff) |
removed debugging gunk
-rw-r--r-- | granolin.lisp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/granolin.lisp b/granolin.lisp index 7137313..e8e48b2 100644 --- a/granolin.lisp +++ b/granolin.lisp @@ -337,12 +337,8 @@ (let ((url (format nil +text-message-path+ room-id (txn-id client))) (body (list :|msgtype| "m.text" :|body| message))) - (format t "url: ~a~%" url) - (send (client url body :wrap make-basic-json) - (format t "Message Sent: ~a ~a" room-id message) - (format t "Message Failed To Send ~a ~a" - *response-status* - (flexi-streams:octets-to-string *response-body*))))) + (send (client url body :wrap make-basic-json) t))) + ;;; bot loop |