Handle info log level when using MySQL (#2541)

This commit is contained in:
Badlop 2019-03-04 18:02:02 +01:00
parent 652858c7fe
commit a4222fe9b3
1 changed files with 1 additions and 0 deletions

View File

@ -965,6 +965,7 @@ get_db_version(State) ->
log(Level, Format, Args) ->
case Level of
debug -> ?DEBUG(Format, Args);
info -> ?INFO_MSG(Format, Args);
normal -> ?INFO_MSG(Format, Args);
error -> ?ERROR_MSG(Format, Args)
end.