You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now hermann_lib.c has a number of calls to fprintf to record information/logging info to stderr. It really should send that information to a Ruby logger.
The text was updated successfully, but these errors were encountered:
I think this should be fairly straightforward to accomplish if the constructor receives Ruby logger object
VALUElogger;
/* get the :debug symbol for dispatch */IDdebug_sym=rb_intern("debug");
/* dispatch to logger#debug with "LOGGING!" as the String */VALUEresult=rb_funcall(logger, debug_sym, 1, rb_str_new2("LOGGING!"));
Right now
hermann_lib.c
has a number of calls tofprintf
to record information/logging info tostderr
. It really should send that information to a Ruby logger.The text was updated successfully, but these errors were encountered: