diff options
Diffstat (limited to 'modules/throttle.module')
-rw-r--r-- | modules/throttle.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/throttle.module b/modules/throttle.module index c92cddfee..88fdae8ee 100644 --- a/modules/throttle.module +++ b/modules/throttle.module @@ -169,11 +169,11 @@ function _throttle_update($hits) { // log the change if ($throttle_new < $throttle) { variable_set('throttle_level', $throttle - 1); - watchdog('regular', "message: '$hits' hits in past minute; throttle decreased to level ". $throttle_new); + watchdog('regular', "message: '$hits' hits in past minute; throttle decreased to level ". ($throttle - 1)); } if ($throttle_new > $throttle) { variable_set('throttle_level', $throttle + 1); - watchdog('warning', "warning: '$hits' hits in past minute; throttle increased to level ". $throttle_new); + watchdog('warning', "warning: '$hits' hits in past minute; throttle increased to level ". ($throttle + 1)); } } |