From deb0fbba695c546de38c842e3c118bf1c318ef75 Mon Sep 17 00:00:00 2001 From: Jared Johnson Date: Tue, 2 Dec 2014 16:54:03 -0600 Subject: [PATCH] Fix broken semicolon --- plugins/content_log | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/content_log b/plugins/content_log index 2c9ceca..992c1f5 100644 --- a/plugins/content_log +++ b/plugins/content_log @@ -16,7 +16,7 @@ sub register { sub data_post_handler { my ($self, $transaction) = @_; - open my $out, '>>', $self->content_log_file; + open my $out, '>>', $self->content_log_file or return DECLINED, "Could not open log file.. continuing anyway"; $transaction->header->print($out);