From: Ivan Kohler Date: Tue, 23 May 2017 18:29:45 +0000 (-0700) Subject: add debug flag X-Git-Url: http://git.freeside.biz/gitweb/?p=Net-Vitelity.git;a=commitdiff_plain;h=ed73d4b421ff53c1aad1c1a9c66a8e352240ee1a add debug flag --- diff --git a/Changes b/Changes index e727d50..8f33fa8 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Net-Vitelity +0.05 unreleased + - Add debug flag + 0.04 unreleased - Add support for lnp apitype/URL diff --git a/lib/Net/Vitelity.pm b/lib/Net/Vitelity.pm index 4409b5b..0715b91 100644 --- a/lib/Net/Vitelity.pm +++ b/lib/Net/Vitelity.pm @@ -22,6 +22,7 @@ our $AUTOLOAD; 'login' => $your_login, 'pass' => $your_pass, 'apitype' => 'api', #api, fax or lnp + 'debug' => 0, ); =head1 METHODS @@ -39,6 +40,7 @@ sub new { die "missing user and/or password" unless defined $data{'login'} && defined $data{'pass'}; my $self = { 'login' => $data{'login'}, 'pass' => $data{'pass'} }; $self->{apitype} = $data{'apitype'} ? $data{'apitype'} : 'api'; + $self->{debug} = $data{'debug'} ? 1 : 0; bless $self, $class; return $self; } @@ -62,6 +64,12 @@ sub AUTOLOAD { $url = $URL_FAX if $self->{apitype} eq 'fax'; $url = $URL_LNP if $self->{apitype} eq 'lnp'; + if ( $self->{debug} ) { + warn "Vitelity $cmd ($url)\n"; + my %hash = @_; + warn " $_: $hash{$_}\n" foreach keys %hash; + } + my $response = $ua->post($url, { login => $self->{login}, pass => $self->{pass},