summaryrefslogtreecommitdiff
path: root/src/Readability.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Readability.php')
-rw-r--r--src/Readability.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Readability.php b/src/Readability.php
index 0431635..3998a88 100644
--- a/src/Readability.php
+++ b/src/Readability.php
@@ -189,6 +189,7 @@ class Readability
$this->configuration->setCleanConditionally(false);
$this->attempts[] = ['articleContent' => $result, 'textLength' => $length];
} else {
+ $this->logger->debug('[Parsing] Threshold not met, searching across attempts for some content.');
$this->attempts[] = ['articleContent' => $result, 'textLength' => $length];
// No luck after removing flags, just return the longest text we found during the different loops
@@ -203,6 +204,8 @@ class Readability
throw new ParseException('Could not parse text.');
}
+ $this->logger->debug('[Parsing] Threshold not met, but found some content in previous attempts.');
+
$result = $this->attempts[0]['articleContent'];
$parseSuccessful = true;
break;