test/LSP: assert contents of log file

This commit is contained in:
Justin M. Keyes
2020-02-16 19:02:09 -08:00
parent a446fbc8fa
commit 6e13b9d261
6 changed files with 38 additions and 8 deletions

View File

@@ -151,7 +151,7 @@ int server_start(const char *endpoint)
result = socket_watcher_start(watcher, MAX_CONNECTIONS, connection_cb);
if (result < 0) {
WLOG("Failed to start server: %s", uv_strerror(result));
WLOG("Failed to start server: %s: %s", uv_strerror(result), watcher->addr);
socket_watcher_close(watcher, free_server);
return result;
}