From ee9f7777e5136378622f1250cb3589c1579b7704 Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Mon, 23 Jul 2018 02:59:32 +1000 Subject: [PATCH] * Subtitle::SSA->parse : hide noisy message --- lib/Subtitle/SSA.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Subtitle/SSA.pm b/lib/Subtitle/SSA.pm index 52b79bc..63a82f4 100644 --- a/lib/Subtitle/SSA.pm +++ b/lib/Subtitle/SSA.pm @@ -103,7 +103,7 @@ sub parse { $self->{headers}->{$key} = $header; if ($key eq 'scripttype') { my $type = index($header->{value}, "+") >= 0 ? 'ass' : 'ssa'; - $self->log(info => "File recognized as '$type' type from header at line $linenum"); + $self->log(debug => "File recognized as '$type' type from header at line $linenum"); $self->{type} = $type; } next;