summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2015-09-18 12:55:11 +0200
committerYorhel <git@yorhel.nl>2015-09-18 12:55:11 +0200
commitb1c411da1ec87756cc23487903ea5ec33c25f547 (patch)
treec5cc7589d9bf2dae385be022e12d6245996bccc7
parent990ab85dd1021c56ef479dbd49de9c8879be81f5 (diff)
Fix perl 5.22 warning about extra printf arguments
-rw-r--r--lib/TUWF.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/TUWF.pm b/lib/TUWF.pm
index 1d3a658..5fad91c 100644
--- a/lib/TUWF.pm
+++ b/lib/TUWF.pm
@@ -300,7 +300,7 @@ sub _handle_request {
$sqlt += $_->[1]*1000 for (@{$self->{_TUWF}{DB}{queries}});
}
- $self->log(sprintf('%4dms (SQL:%4dms,%3d qs)', $time, $sqlt, $sqlc, $self->reqURI));
+ $self->log(sprintf('%4dms (SQL:%4dms,%3d qs)', $time, $sqlt, $sqlc));
}
}