소스 검색

Merge pull request #13635 from ghalliday/issue23866

HPCC-23866 Avoid logging missing syntaxCheck function to stdout

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 5 년 전
부모
커밋
cb846e7f5f
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);