Removed most logging.

This commit is contained in:
James Cole
2016-03-19 11:25:11 +01:00
parent 7aa2565e89
commit 322fef2db1
17 changed files with 0 additions and 95 deletions

View File

@@ -59,15 +59,9 @@ final class DescriptionContains extends AbstractTrigger implements TriggerInterf
$strpos = strpos($source, $search);
if (!($strpos === false)) {
// found something
Log::debug('"' . $source . '" contains the text "' . $search . '". Return true.');
return true;
}
// found nothing.
Log::debug('"' . $source . '" does not contain the text "' . $search . '". Return false.');
return false;
}