Possible error in send-log example
Antero Mejr 13 Mar 2024 15:24 UTC
In the send-log specification, the following example is provided:
(send-log 'INFO (string-append "User " username " logged in")
'USERNAME username 'REMOTE_IP remote-ip)
However when I try that with the sample implementation's send-log, an
error is raised because 'INFO should be an integer, not a symbol. I
think the correct example would be:
(send-log INFO (string-append "User " username " logged in")
'USERNAME username 'REMOTE_IP remote-ip)