make win32 work

pull/502/head
Jeff Becker 5 years ago
parent 4948fd50f8
commit fda7c4779e
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -838,8 +838,12 @@ namespace llarp
{
if(StrEq(key, "type") && StrEq(val, "syslog"))
{
#if defined(_WIN32)
LogError("syslog not supported on win32");
#else
LogInfo("Switching to syslog");
LogContext::Instance().logStream = std::make_unique< SysLogStream >();
#endif
}
}
else if(StrEq(section, "lokid"))

Loading…
Cancel
Save