The only way to do it right now is when calling erlydb:start().
This is how I start erlydb:
erlydb:start(mysql, [{hostname, "localhost"},
{username, "username"}, {password, "password"},
{database, "vimagi"}
,{logfun, fun log/4}]),
This is my log/4 function:
log(Module, Line, Level, FormatFun) ->
case Level of
debug ->
ok;
_ ->
Func = case Level of
info ->
info_msg;
normal ->
info_msg;
error ->
error_msg;
warn ->
warning_msg
end,
{Format, Params} = FormatFun(),
error_logger:Func("~w:~b: "++ Format,
[Module, Line | Params])
end.
On Dec 28, 2007 9:17 AM, Kevin A. Smith <[EMAIL PROTECTED]> wrote:
>
> I'm using the mysql driver and would like to disable debug level
> logging. I've poked around in the erlydb and mysql driver code and
> haven't seen an obvious way to do it without changing code. Ideally
> I'd like to be able to flip a switch on erlydb itself and do this. Is
> there anything like this now?
>
> --Kevin
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"erlyweb" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/erlyweb?hl=en
-~----------~----~----~----~------~----~------~--~---