diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-31 22:41:48 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-31 22:41:48 -0700 |
commit | 1447499776ce07bf48b76435a23de704952e6aa2 (patch) | |
tree | 08e00724c66271ccc06e732a72b6b5d3b04886db /include/identity.php | |
parent | 417da13353431ddadafe661803115cf9dd9bf9ca (diff) | |
download | volse-hubzilla-1447499776ce07bf48b76435a23de704952e6aa2.tar.gz volse-hubzilla-1447499776ce07bf48b76435a23de704952e6aa2.tar.bz2 volse-hubzilla-1447499776ce07bf48b76435a23de704952e6aa2.zip |
don't log the mundane - especially at normal levels.
Diffstat (limited to 'include/identity.php')
-rw-r--r-- | include/identity.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/identity.php b/include/identity.php index d822dc69c..8d6a65cad 100644 --- a/include/identity.php +++ b/include/identity.php @@ -674,7 +674,7 @@ function identity_export_year($channel_id,$year,$month = 0) { */ function profile_load(&$a, $nickname, $profile = '') { - logger('profile_load: ' . $nickname . (($profile) ? ' profile: ' . $profile : '')); +// logger('profile_load: ' . $nickname . (($profile) ? ' profile: ' . $profile : '')); $user = q("select channel_id from channel where channel_address = '%s' and channel_removed = 0 limit 1", dbesc($nickname) @@ -937,7 +937,8 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) { $marital = ((x($profile,'marital') == 1) ? t('Status:') : False); $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False); $profile['online'] = (($profile['online_status'] === 'online') ? t('Online Now') : False); - logger('online: ' . $profile['online']); + +// logger('online: ' . $profile['online']); if(! perm_is_allowed($profile['uid'],((is_array($observer)) ? $observer['xchan_hash'] : ''),'view_profile')) { $block = true; |