1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

add note for win32

trivia: specifiying 'syslog' in php for windows config causes php to write to the event log
we should do something similar here ig
This commit is contained in:
Rick V 2019-04-11 10:29:07 -05:00
parent 8c62df94d9
commit 7a74631d38
No known key found for this signature in database
GPG key ID: C0EDC8723FDC3465

View file

@ -838,6 +838,7 @@ namespace llarp
{
if(StrEq(key, "type") && StrEq(val, "syslog"))
{
// TODO(despair): write event log syslog class
#if defined(_WIN32)
LogError("syslog not supported on win32");
#else