Add a patch to make it possible to increase verbosity even in daemon mode

Approved by:	hrs (maintainer)
Obtained from:	pfSense
Sponsored by:	Rubicon Communications (Netgate)
Differential Revision:	https://reviews.freebsd.org/D5105
This commit is contained in:
Renato Botelho 2016-01-29 07:39:15 +00:00
parent 402f0c7146
commit c516c66668
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=407458
2 changed files with 13 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= dhcp6
PORTVERSION= 20080615
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= net ipv6
MASTER_SITES= SF/wide-dhcpv6/wide-dhcpv6/wide-dhcpv6-${PORTVERSION}
DISTNAME= wide-dhcpv6-${PORTVERSION}

View File

@ -0,0 +1,12 @@
--- common.c.orig 2016-01-28 11:27:18 UTC
+++ common.c
@@ -3202,6 +3202,9 @@ setloglevel(debuglevel)
case 1:
setlogmask(LOG_UPTO(LOG_INFO));
break;
+ case 2:
+ setlogmask(LOG_UPTO(LOG_DEBUG));
+ break;
}
}
}