Removed io:format/2 call from try_parsers/2.
Something that was left during debugging I guess ;-)
This commit is contained in:
parent
644ed69cda
commit
c3b490ec52
1 changed files with 0 additions and 1 deletions
|
@ -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};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue