我正在尝试通过使用 PHP 中的 syslog 函数登录到它来测试 Windows Kiwi Syslog Server 的安装,如下所示:
syslog(LOG_WARNING, "test123");
该函数返回true,但日志未显示在本地主机上运行的 Kiwi 中。是否需要任何配置才能使 syslog 在 Windows 中使用 PHP 工作?
This syslog() function call is a unix thing. According to the php syslog manual:
Notes
On Windows NT, the syslog service is emulated using the Event Log.
So it is unlikely that your messages will end up in kiwi syslog server unless it reads the EventLog.