Merge pull request #3083 from rabuzarus/20170111_-_diaspora_logger_debug

diaspora - switch logger for "non subscribed messages" to LOGGER_DEBUG
This commit is contained in:
Michael Vogel 2017-01-11 14:32:25 +01:00 committed by GitHub
commit c02e697442
1 changed files with 3 additions and 2 deletions

View File

@ -325,8 +325,9 @@ class Diaspora {
logger("delivering to: ".$rr["username"]);
self::dispatch($rr,$msg);
}
} else
logger("No subscribers for ".$msg["author"]." ".print_r($msg, true));
} else {
logger("No subscribers for ".$msg["author"]." ".print_r($msg, true), LOGGER_DEBUG);
}
return $message_id;
}