From b8fad180475a847dab845a2cc7bcf56ab274ee46 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 1 Jul 2013 00:36:21 +0200 Subject: Remove debug format statements --- pg-datastore.lisp | 1 - scrumli.lisp | 2 -- 2 files changed, 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) -- cgit v1.2.3-54-g00ecf