Windows EventLog の「Application」ノード以外に (Delphi で) カスタム EventLog を作成するにはどうすればよいですか?
//The code below write on the Application node only
with TEventLogger.Create('JarvisAgent') do
begin
try
try
LogMessage(Msg, EVENTLOG_INFORMATION_TYPE, 0, 2);
finally
Free;
end;
except
end;
end;