diff --git a/src/ExternalViewers.cpp b/src/ExternalViewers.cpp index 43853cb1aae..bedd8f370d1 100644 --- a/src/ExternalViewers.cpp +++ b/src/ExternalViewers.cpp @@ -395,9 +395,9 @@ static TempStr GetDocumentPathQuoted(WindowTab* tab) { bool ViewWithKnownExternalViewer(WindowTab* tab, int cmdId) { bool canView = CanViewWithKnownExternalViewer(tab, cmdId); if (!canView) { - // TODO: with command palette can send un-enforcable command logfa("ViewWithKnownExternalViewer cmd: %d\n", cmdId); - ReportIf(!canView); + // with command palette can send un-enforcable command so not ReportIf + ReportDebugIf(!canView); return false; } ExternalViewerInfo* ev = FindKnownExternalViewerInfoByCmdId(cmdId);