summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2011-02-27 21:32:23 +0000
committerivan <ivan>2011-02-27 21:32:23 +0000
commit6649bd3813bc2684046058c348d1d08a73804bdd (patch)
tree02471056f2459485c7338d79039160e69a82e198
parentbed7609980610c6582e9a3842d28f15f837efa76 (diff)
add start of torrus srvderive daemon, RT#10574
-rw-r--r--FS/bin/freeside-torrus-srvderive6
1 files changed, 3 insertions, 3 deletions
diff --git a/FS/bin/freeside-torrus-srvderive b/FS/bin/freeside-torrus-srvderive
index cb2bcf41a..46a2f1914 100644
--- a/FS/bin/freeside-torrus-srvderive
+++ b/FS/bin/freeside-torrus-srvderive
@@ -8,7 +8,7 @@ use FS::UID qw( adminsuidsetup dbh driver_name );
use FS::Record qw( qsearch str2time_sql str2time_sql_closing concat_sql );
use FS::torrus_srvderive;
-our $DEBUG = 1;
+our $DEBUG = 3;
my $user = shift or die &usage;
$FS::Daemon::PID_NEWSTYLE = 1;
@@ -85,7 +85,7 @@ while (1) {
$orderlimit
";
- warn $sql if $DEBUG > 2;
+ warn $ssql if $DEBUG > 1;
my $sth = dbh->prepare($sql) or die $DBI::errstr; #better recovery?
$sth->execute($serviceid, $serviceid) or die $sth->errstr;
my $prev = 0;
@@ -121,7 +121,7 @@ while (1) {
300, #intvl ...
);
warn $isql. ' with param '. join(',',@param). "\n"
- if $DEBUG > 1;
+ if $DEBUG > 2;
my $isth = dbh->prepare($isql) or die $DBI::errstr; #better recovery?
$isth->execute( @param ) or die $isth->errstr;