aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-09 02:56:45 -0800
committerfriendica <info@friendica.com>2013-02-09 02:56:45 -0800
commit6d73e5c0a6b3bd8f60dbd1a71f77e6dd01028a7e (patch)
tree42ccaee4b413b7c65ced81d930a447833b69d1a8
parent55df911403e64ce02fa910fa59bfe8ec7d907608 (diff)
downloadvolse-hubzilla-6d73e5c0a6b3bd8f60dbd1a71f77e6dd01028a7e.tar.gz
volse-hubzilla-6d73e5c0a6b3bd8f60dbd1a71f77e6dd01028a7e.tar.bz2
volse-hubzilla-6d73e5c0a6b3bd8f60dbd1a71f77e6dd01028a7e.zip
add count of items to profiler so we can get a running average
-rw-r--r--mod/network.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/network.php b/mod/network.php
index a0c55d852..127e7da7f 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -719,7 +719,7 @@ function network_content(&$a, $update = 0, $load = false) {
profiler($fourth,$fifth,'network sort');
profiler($fifth,$sixth,'network render');
profiler($start,$sixth,'network total');
- profiler(1,1,'--');
+ profiler(1,1,'-- ' . count($items));
}
return $o;