Turn off debugging by default.

This commit is contained in:
Pawel Jakub Dawidek 2004-05-03 21:11:54 +00:00
parent 9644b0783f
commit b62093b274
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=128889

View file

@ -52,7 +52,7 @@ static MALLOC_DEFINE(M_GATE, "gg data", "GEOM Gate Data");
SYSCTL_DECL(_kern_geom);
SYSCTL_NODE(_kern_geom, OID_AUTO, gate, CTLFLAG_RW, 0, "GEOM_GATE stuff");
static u_int g_gate_debug = 3;
static u_int g_gate_debug = 0;
SYSCTL_UINT(_kern_geom_gate, OID_AUTO, debug, CTLFLAG_RW, &g_gate_debug, 0,
"Debug level");