Unverified Commit 9fa01c49 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

remove debug output

parent d5f28814
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -93,7 +93,6 @@ sub new_p {
	my $url  = $conf{url} . "/${lang}n";
	$conf{user_agent}->post_p( $url, form => $self->{post} )->then(
		sub {
			say "then";
			my ($tx) = @_;
			if ( my $err = $tx->error ) {
				$promise->reject(
@@ -102,7 +101,6 @@ sub new_p {
			}
			my $content = $tx->res->body;

			say $content;
			$self->{raw_reply} = $content;

			$self->{raw_reply} =~ s{ ^ SLs [.] sls = }{}x;
@@ -119,7 +117,6 @@ sub new_p {
		}
	)->catch(
		sub {
			say "catch";
			my ($err) = @_;
			$promise->reject($err);
			return;