exilon/QuickLogger

Does this work for an OSX Dylib? Because I can't get any output

TheOriginalBytePlayer opened this issue · 1 comments

According to the instructions, I am iniitialzing it with

Logger.Providers.Add(GlobalLogConsoleProvider);
with GlobalLogConsoleProvider do
begin
	LogLevel := LOG_ALL;
    ShowEventColors := True;
    Enabled := True;
end;
Log('Test entry',etInfo);
Log('Test number: %d',[1],etWarning);

It all compiles fine but nothing is ever sent to the console. Should this work? Am am don't something wrong?

Could you share a simple project?