소스 검색

HPCC-23866 Avoid logging missing syntaxCheck function to stdout

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 5 년 전
부모
커밋
793dacb134
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ecl/hql/hqlfold.cpp

+ 1 - 1
ecl/hql/hqlfold.cpp

@@ -1367,7 +1367,7 @@ IValue * foldExternalCall(IHqlExpression* expr, unsigned foldOptions, ITemplateC
     void *funcptr = loadExternalEntryPoint(expr, foldOptions, templateContext, library.str(), entry.str(), hDll);
     if (!funcptr)
     {
-        UERRLOG("Failed to load function %s", entry.str());
+        DBGLOG("Failed to load function %s", entry.str());
         return NULL;
     }
     return doFoldExternalCall(expr, foldOptions, templateContext, library.str(), entry.str(), funcptr);