aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-07-01 00:36:21 +0200
committerGravatar Tom Willemse2013-07-01 00:36:21 +0200
commitb8fad180475a847dab845a2cc7bcf56ab274ee46 (patch)
treeded05f3c6282ea88c029a1202170c7eddf1411c6
parenta9935738595c7fcbf78696a67d9e31b45830297f (diff)
downloadscrumli-b8fad180475a847dab845a2cc7bcf56ab274ee46.tar.gz
scrumli-b8fad180475a847dab845a2cc7bcf56ab274ee46.zip
Remove debug format statements
-rw-r--r--pg-datastore.lisp1
-rw-r--r--scrumli.lisp2
2 files changed, 0 insertions, 3 deletions
diff --git a/pg-datastore.lisp b/pg-datastore.lisp
index d9eb8b2..8cfdbeb 100644
--- a/pg-datastore.lisp
+++ b/pg-datastore.lisp
@@ -32,7 +32,6 @@
(defmethod datastore-post-story
((datastore pg-datastore) role necessity title content reporter)
- (format t "~s:~s:~s:~s:~s~%" role necessity title content reporter)
(with-connection (connection-spec datastore)
(let ((obj (make-instance
'story :role role :necessity necessity :title title
diff --git a/scrumli.lisp b/scrumli.lisp
index 39a7039..ef2b66a 100644
--- a/scrumli.lisp
+++ b/scrumli.lisp
@@ -75,8 +75,6 @@
(necessity (hunchentoot:post-parameter "necessity"))
(title (hunchentoot:post-parameter "headline"))
(content (hunchentoot:post-parameter "content")))
- (format t "~s;~s;~s;~s;~s~%" role necessity title content
- (hunchentoot:session-value :username))
(post-story role necessity title content
(hunchentoot:session-value :username))
200)