Skip to content

Commit

Permalink
Lower log level of "addPathsForType" log message (fixes #4177)
Browse files Browse the repository at this point in the history
  • Loading branch information
ximinez authored and nbougalis committed Jul 18, 2022
1 parent 18d4372 commit ee60b16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ripple/app/paths/Pathfinder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -796,8 +796,8 @@ Pathfinder::addPathsForType(
PathType const& pathType,
std::function<bool(void)> 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())
Expand Down

0 comments on commit ee60b16

Please sign in to comment.