summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8d8c82f)
raw | patch | inline | side by side (parent: 8d8c82f)
author | Sergey <a_s_y@sama.ru> | |
Tue, 3 Nov 2015 06:19:50 +0000 (07:19 +0100) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 3 Nov 2015 06:19:50 +0000 (07:19 +0100) |
Fixes #1329
src/apcups.c | patch | blob | history |
diff --git a/src/apcups.c b/src/apcups.c
index ee15b14f66cf8d1899f767aac09915ee9e895878..ace5d5321274b9dd9a5f712caae19cfd2ef8fea7 100644 (file)
--- a/src/apcups.c
+++ b/src/apcups.c
if (status != 0)
{
char errbuf[1024];
- INFO ("getaddrinfo failed: %s",
+ INFO ("apcups plugin: getaddrinfo failed: %s",
(status == EAI_SYSTEM)
? sstrerror (errno, errbuf, sizeof (errbuf))
: gai_strerror (status));
if (sd < 0)
{
- DEBUG ("Unable to open a socket");
+ DEBUG ("apcups plugin: Unable to open a socket");
freeaddrinfo (ai_return);
return (-1);
}
if (status != 0) /* `connect(2)' failed */
{
char errbuf[1024];
- INFO ("connect failed: %s",
+ INFO ("apcups plugin: connect failed: %s",
sstrerror (errno, errbuf, sizeof (errbuf)));
close (sd);
return (-1);
}
- DEBUG ("Done opening a socket %i", sd);
+ DEBUG ("apcups plugin: Done opening a socket %i", sd);
return (sd);
} /* int net_open (char *host, char *service, int port) */
*/
if (status != 0)
{
- DEBUG ("apc_query_server (%s, %i) = %i",
+ DEBUG ("apcups plugin: apc_query_server (%s, %i) = %i",
conf_host == NULL
? APCUPS_DEFAULT_HOST
: conf_host,