Changeset 375 for cpp/common/stl-util.cpp
- Timestamp:
- 04/26/15 00:59:09 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/stl-util.cpp
r374 r375 9 9 #include "Convert.h" 10 10 #include "nonstd.h" 11 #include " hmessage.h"11 #include "log.h" 12 12 #include <assert.h> 13 13 #ifdef USE_VIRTFILE … … 103 103 } 104 104 if (warn_on_missing_file && !ok) 105 Hprintf("stl-util", "readCompleteFile", HMLV_WARN, "Couldn't open file '%s'", filename);105 logPrintf("stl-util", "readCompleteFile", LOG_WARN, "Couldn't open file '%s'", filename); 106 106 return ok; 107 107 } … … 129 129 } 130 130 if (warn_on_fail && !ok) 131 Hprintf("stl-util", "writeCompleteFile", HMLV_WARN, "couldn't write file '%s'", filename);131 logPrintf("stl-util", "writeCompleteFile", LOG_WARN, "couldn't write file '%s'", filename); 132 132 return ok; 133 133 }
Note: See TracChangeset
for help on using the changeset viewer.