Remove __CLASS__ from debug logs

This commit is contained in:
Frederic Guillot
2016-01-16 21:48:33 -05:00
parent 41e900fc7a
commit 47e4274579
8 changed files with 12 additions and 12 deletions

View File

@@ -22,7 +22,7 @@ class ProjectDailySummarySubscriber extends BaseSubscriber implements EventSubsc
public function execute(TaskEvent $event)
{
if (isset($event['project_id']) && !$this->isExecuted()) {
$this->logger->debug('Subscriber executed: '.__CLASS__.'::'.__METHOD__);
$this->logger->debug('Subscriber executed: '.__METHOD__);
$this->projectDailyColumnStats->updateTotals($event['project_id'], date('Y-m-d'));
$this->projectDailyStats->updateTotals($event['project_id'], date('Y-m-d'));
}