Skip to content

Commit

Permalink
don't redirect stderr/out in injector
Browse files Browse the repository at this point in the history
Fixes endless "starting" box in XL
  • Loading branch information
goaaats committed Jul 1, 2024
1 parent c72b4cd commit a0e9341
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dalamud.Injector.Boot/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

int wmain(int argc, wchar_t** argv)
{
logging::start_file_logging("dalamud.injector.boot.log", true);
// Take care: don't redirect stderr/out here, we need to write our pid to stdout for XL to read
logging::start_file_logging("dalamud.injector.boot.log", false);
logging::I("Dalamud Injector, (c) 2021 XIVLauncher Contributors");
logging::I("Built at : " __DATE__ "@" __TIME__);

Expand Down

0 comments on commit a0e9341

Please sign in to comment.