commit df1f218b4d4f5968f54f38259288c5538a0860d2 from: Stefan Sperling via: Thomas Adam date: Sun May 26 14:04:47 2024 UTC log hostname and port when gotd notification helpers fail to connect ok op@ commit - 62ef6d19d1ed55e9207162aceec859fc89d76cfd commit + df1f218b4d4f5968f54f38259288c5538a0860d2 blob - 2fe1cd472af58848cffb1c7c0163ebb3c88c08f3 blob + bb51cb819f0f16fdf6b6f1cb16f5aac4164f4226 --- gotd/libexec/got-notify-email/got-notify-email.c +++ gotd/libexec/got-notify-email/got-notify-email.c @@ -93,7 +93,7 @@ dial(const char *host, const char *port) freeaddrinfo(res0); if (s == -1) - fatal("%s", cause); + fatal("%s %s:%s", cause, host, port); return s; } blob - 4c4f536b692e63fe51f8a8d4755437761009301f blob + 66d39b63e3d3fd27e90584c6189567206564c049 --- gotd/libexec/got-notify-http/got-notify-http.c +++ gotd/libexec/got-notify-http/got-notify-http.c @@ -91,7 +91,7 @@ dial(const char *host, const char *port) freeaddrinfo(res0); if (s == -1) - fatal("%s", cause); + fatal("%s %s:%s", cause, host, port); return s; }