summaryrefslogtreecommitdiff
path: root/lib/Feed/Role/UnBase64.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Feed/Role/UnBase64.pm')
-rw-r--r--lib/Feed/Role/UnBase64.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Feed/Role/UnBase64.pm b/lib/Feed/Role/UnBase64.pm
index 9f7d08a..11f8767 100644
--- a/lib/Feed/Role/UnBase64.pm
+++ b/lib/Feed/Role/UnBase64.pm
@@ -9,7 +9,6 @@ before process_entry => sub {
my ($self, $entry) = @_;
my $html = $entry->unified_content->body or return;
- $self->log->warn(">>$html<<");
if( $html =~ m{\A[A-Za-z0-9/=+\n-]+\z} ) {
try { $entry->content( decode_base64($html) ) };
};