Skip to content

Commit

Permalink
Forgot to turn debug off on ArticleExtractor
Browse files Browse the repository at this point in the history
  • Loading branch information
crscheid committed Feb 26, 2020
1 parent 81e2e39 commit ae14f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ArticleExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class ArticleExtractor {

// Debug flag - set to true for convenience during development
private $debug = true;
private $debug = false;

// Valid root elements we want to search for
private $valid_root_elements = [ 'body', 'form', 'main', 'div', 'ul', 'li', 'table', 'span', 'section', 'article', 'main'];
Expand Down

0 comments on commit ae14f30

Please sign in to comment.