Removed io:format/2 call from try_parsers/2.

Something that was left during debugging I guess ;-)
This commit is contained in:
Alejandro M. Ramallo 2015-07-09 16:54:23 +01:00
parent 644ed69cda
commit c3b490ec52

View file

@ -616,7 +616,6 @@ try_registered_parsers(RawDate) ->
try_parsers(_RawDate,[]) -> try_parsers(_RawDate,[]) ->
undefined; undefined;
try_parsers(RawDate,[{ParserKey,Parser}|Parsers]) -> try_parsers(RawDate,[{ParserKey,Parser}|Parsers]) ->
io:format("Trying Parser: ~p~n", [ParserKey]),
try Parser(RawDate) of try Parser(RawDate) of
{{_,_,_},{_,_,_}} = DateTime -> {{_,_,_},{_,_,_}} = DateTime ->
{DateTime,undefined}; {DateTime,undefined};