From ee60b16b3a62fda2557be522d84d915ffd272437 Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Tue, 24 May 2022 17:44:21 -0400 Subject: [PATCH] Lower log level of "addPathsForType" log message (fixes #4177) --- src/ripple/app/paths/Pathfinder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ripple/app/paths/Pathfinder.cpp b/src/ripple/app/paths/Pathfinder.cpp index 71a4afa75..556622ee7 100644 --- a/src/ripple/app/paths/Pathfinder.cpp +++ b/src/ripple/app/paths/Pathfinder.cpp @@ -796,8 +796,8 @@ Pathfinder::addPathsForType( PathType const& pathType, std::function const& continueCallback) { - JLOG(j_.warn()) << "addPathsForType " - << CollectionAndDelimiter(pathType, ", "); + JLOG(j_.debug()) << "addPathsForType " + << CollectionAndDelimiter(pathType, ", "); // See if the set of paths for this type already exists. auto it = mPaths.find(pathType); if (it != mPaths.end())