diff options
author | friendica <info@friendica.com> | 2013-02-09 02:56:45 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-09 02:56:45 -0800 |
commit | 6d73e5c0a6b3bd8f60dbd1a71f77e6dd01028a7e (patch) | |
tree | 42ccaee4b413b7c65ced81d930a447833b69d1a8 /mod/network.php | |
parent | 55df911403e64ce02fa910fa59bfe8ec7d907608 (diff) | |
download | volse-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
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 2 |
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; |