Tidying up dancer app
authorChris Cormack <chrisc@catalyst.net.nz>
Mon, 13 Jan 2014 00:58:39 +0000 (13:58 +1300)
committerChris Cormack <chrisc@catalyst.net.nz>
Mon, 13 Jan 2014 00:58:39 +0000 (13:58 +1300)
lib/NCIP/Dancing.pm

index 900c9e2..11e8197 100644 (file)
@@ -9,12 +9,8 @@ use NCIP;
 any ['get', 'post'] => '/' => sub {
     my $ncip = NCIP->new('t/config_sample');
     my $xml = param 'xml';
-    warn $xml if $xml;
     my $content = $ncip->process_request($xml);
-  #  warn $content;
     template 'main', { content => $content };
-
-  #  warn "what";
 };
 
 true;