eden: decrease verbosity of "fetching tree" message

Summary:
A warning means that every tree fetched will be printed in the edenfs log,
which is way too much. Let's decrease this to a debug message.

Reviewed By: genevievehelsel

Differential Revision: D23385778

fbshipit-source-id: d77f1cac3efb945d4b95750822f2f12f48c75ffe
This commit is contained in:
Xavier Deguillard 2020-08-27 18:13:19 -07:00 committed by Facebook GitHub Bot
parent c2d36d03c4
commit eb57ebb4d8

View File

@ -470,7 +470,7 @@ class HgServer(object):
manifest_node = request.body[:SHA1_NUM_BYTES]
path = pycompat.decodeutf8(request.body[SHA1_NUM_BYTES:])
logging.warning(
logging.debug(
"fetching tree for path %r manifest node %s", path, hex(manifest_node)
)