aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)