]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Less spammy logs
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 22 Oct 2016 21:24:13 +0000 (23:24 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 22 Oct 2016 21:24:13 +0000 (23:24 +0200)
plugins/OStatus/classes/Ostatus_profile.php

index cd3f4f6e6ce1117767896667c285138d9e020225..2724aaedc0998e9253fbb6a6e1eefd56ad57c743 100644 (file)
@@ -1372,7 +1372,8 @@ class Ostatus_profile extends Managed_DataObject
         // @todo tags from categories
 
         if ($profile->id) {
-            common_log(LOG_DEBUG, "Updating OStatus profile $profile->id from remote info $object->id: " . var_export($object, true) . var_export($hints, true));
+            //common_debug('Updating OStatus profile '._ve($profile->getID().' from remote info '._ve($object->id).': ' . _ve($object) . _ve($hints));
+            common_debug('Updating OStatus profile '._ve($profile->getID()).' from remote info '._ve($object->id).' gathered from hints: '._ve($hints));
             $profile->update($orig);
         }
     }
@@ -1396,7 +1397,8 @@ class Ostatus_profile extends Managed_DataObject
         $group->homepage = self::getActivityObjectHomepage($object, $hints);
 
         if ($group->id) {   // If no id, we haven't called insert() yet, so don't run update()
-            common_log(LOG_DEBUG, "Updating OStatus group $group->id from remote info $object->id: " . var_export($object, true) . var_export($hints, true));
+            //common_debug('Updating OStatus group '._ve($group->getID().' from remote info '._ve($object->id).': ' . _ve($object) . _ve($hints));
+            common_debug('Updating OStatus group '._ve($group->getID()).' from remote info '._ve($object->id).' gathered from hints: '._ve($hints));
             $group->update($orig);
         }
     }
@@ -1417,7 +1419,8 @@ class Ostatus_profile extends Managed_DataObject
         $tag->tagger = $tagger->profile_id;
 
         if ($tag->id) {
-            common_log(LOG_DEBUG, "Updating OStatus peopletag $tag->id from remote info $object->id: " . var_export($object, true) . var_export($hints, true));
+            //common_debug('Updating OStatus peopletag '._ve($tag->getID().' from remote info '._ve($object->id).': ' . _ve($object) . _ve($hints));
+            common_debug('Updating OStatus peopletag '._ve($tag->getID()).' from remote info '._ve($object->id).' gathered from hints: '._ve($hints));
             $tag->update($orig);
         }
     }