Changeset 72943 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Jul 7, 2018 3:24:14 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/errorprint.cpp
r69500 r72943 84 84 // pcszSourceFile comes from __FILE__ macro, which always contains the full path, 85 85 // which we don't want to see printed: 86 Utf8Str strFilename(RTPathFilename(pcszSourceFile));87 86 Utf8Str str = Utf8StrFmt("Context: \"%s\" at line %d of file %s\n", 88 87 pcszContext, 89 88 ulLine, 90 strFilename.c_str());89 RTPathFilename(pcszSourceFile)); 91 90 // print and log 92 91 RTMsgError("%s", str.c_str());
Note:
See TracChangeset
for help on using the changeset viewer.