From: Sage Weil Date: Mon, 18 Feb 2019 21:07:18 +0000 (-0600) Subject: osd: fix typo in numa node check; lower debug level X-Git-Tag: v14.1.0~45^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a0a14a950fe9c98cc12e8acb0580f02c7e860f11;p=ceph.git osd: fix typo in numa node check; lower debug level - s/to/do/ - no need for this on stderr, since they don't match on *most* systems it seems. Signed-off-by: Sage Weil --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 9fb35ff8813..51a1273934d 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -2402,8 +2402,8 @@ int OSD::set_numa_affinity() numa_node = front_node; } } else { - derr << __func__ << " objectstore and network numa nodes to not match" - << dendl; + dout(1) << __func__ << " objectstore and network numa nodes do not match" + << dendl; } } } else {