diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-08-02 17:09:00 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-08-02 17:09:00 -0700 |
commit | 4ef0cb4a8729c07a7257cd924b6c778e17329d28 (patch) | |
tree | 0e492faea080e5d48f5fb6f97682dd94fbba3b55 | |
parent | 57290f5ec7acdfd413cbd6c24026ce153efd9f14 (diff) |
enable all debugging when you turn on the checkbox, RT#76756
-rw-r--r-- | FS/FS/part_export/pbxware.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_export/pbxware.pm b/FS/FS/part_export/pbxware.pm index 53cb12bf9..44a606de6 100644 --- a/FS/FS/part_export/pbxware.pm +++ b/FS/FS/part_export/pbxware.pm @@ -137,7 +137,7 @@ sub import_cdrs { # page's IDs or something. my $uniqueid = md5_hex(join(',',@$row)); if ( FS::cdr->row_exists('uniqueid = ?', $uniqueid) ) { - warn "skipped duplicate row in page $page\n" if $DEBUG > 1; + warn "skipped duplicate row in page $page\n" if $DEBUG; next CDR; } @@ -186,7 +186,7 @@ local $ENV{'PERL_LWP_SSL_VERIFY_HOSTNAME'} = 0; ] ); warn "$me $method\n" if $DEBUG; - warn $request->as_string."\n" if $DEBUG > 1; + warn $request->as_string."\n" if $DEBUG; my $ua = LWP::UserAgent->new; my $response = $ua->request($request); |