From 23aa35b8251355d776abc87c1dc72fdb21a14d82 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Fri, 4 Jun 2021 07:28:33 -0400 Subject: [PATCH] log when we ignore a path --- llarp/path/path.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/llarp/path/path.cpp b/llarp/path/path.cpp index eacad4613..b11bcf12e 100644 --- a/llarp/path/path.cpp +++ b/llarp/path/path.cpp @@ -293,6 +293,10 @@ namespace llarp { LogInfo("path ", Name(), " reanimated"); } + else if (st == ePathIgnore) + { + LogInfo("path ", Name(), " ignored"); + } _status = st; }