Don't warn if custom schema is not available

This commit is contained in:
Christophe Romain 2017-01-31 09:53:52 +01:00
parent 649d3b753b
commit 589bc73838
1 changed files with 3 additions and 0 deletions

View File

@ -111,6 +111,9 @@ schema(Path, Module, Name, TabDef) ->
_ ->
TabDef
end;
{error, enoent} ->
?DEBUG("No custom ~s schema path", [Module]),
TabDef;
{error, Error} ->
?ERROR_MSG("Can not use custom ~s schema for table ~s: ~p",
[Module, Name, Error]),