Skip to content

Commit

Permalink
improvement: absolute path in included source console output
Browse files Browse the repository at this point in the history
  • Loading branch information
sylefeb committed Dec 8, 2024
1 parent ccb736d commit 0db205d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LuaPreProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ std::string LuaPreProcessor::assembleSource(
std::unordered_set<std::string> alreadyIncluded,
int& _output_line_count)
{
cerr << "assembling source " << src_file << '.' << "\n";
cerr << "assembling source " << std::filesystem::absolute(src_file) << '.' << "\n";
if (!LibSL::System::File::exists(src_file.c_str())) {
throw Fatal("cannot find source file '%s'", src_file.c_str());
}
Expand Down

0 comments on commit 0db205d

Please sign in to comment.