Prechádzať zdrojové kódy

HPCC-13580 Correct text of logging error messages

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 10 rokov pred
rodič
commit
0a125f702b
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      common/dllserver/thorplugin.cpp

+ 2 - 2
common/dllserver/thorplugin.cpp

@@ -284,7 +284,7 @@ static bool getResourceFromMappedFile(const char * filename, const byte * start_
     //Check that there is a symbol table for the sections.
     if (hdr->e_shstrndx == SHN_UNDEF)
     {
-        DBGLOG("Failed to extract resource %s: Does include a section symbol table", filename);
+        DBGLOG("Failed to extract resource %s: Does not include a section symbol table", filename);
         return false;
     }
 
@@ -305,7 +305,7 @@ static bool getResourceFromMappedFile(const char * filename, const byte * start_
         }
     }
 
-    DBGLOG("Failed to extract resource %s: Does include a matching entry", filename);
+    DBGLOG("Failed to extract resource %s: Does not include a matching entry", filename);
     return false;
 #endif
 }