summaryrefslogtreecommitdiff
path: root/common/src
diff options
context:
space:
mode:
Diffstat (limited to 'common/src')
-rw-r--r--common/src/packet_inject.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/src/packet_inject.cpp b/common/src/packet_inject.cpp
index 464fefa..88c36ed 100644
--- a/common/src/packet_inject.cpp
+++ b/common/src/packet_inject.cpp
@@ -22,7 +22,7 @@ int packet_inject_ipv4(struct in_addr *ip_dst, const char *data, int len)
{
char string[256] = {0};
inet_ntop(PF_INET, ip_dst, string, sizeof(string));
- LOG_ERROR("Failed at send() %s, (%d: %s)", string, errno, strerror(errno));
+ LOG_INFO("Failed at send() %s, (%d: %s)", string, errno, strerror(errno));
close(fd);
return -1;
}
@@ -48,7 +48,7 @@ int packet_inject_ipv6(struct in6_addr *ip6_dst, const char *data, int len)
{
char string[256] = {0};
inet_ntop(PF_INET6, ip6_dst, string, sizeof(string));
- LOG_ERROR("Failed at send() %s, (%d: %s)", string, errno, strerror(errno));
+ LOG_INFO("Failed at send() %s, (%d: %s)", string, errno, strerror(errno));
close(fd);
return -1;
}