Skip to content

Commit

Permalink
WolfLauncher: add execution timestamp to the outline
Browse files Browse the repository at this point in the history
  • Loading branch information
jgautier-anssi authored and fabienfl-orc committed Jul 31, 2020
1 parent 1542a2c commit abaedd8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/OrcCommand/WolfLauncher_Run.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,10 @@ HRESULT Orc::Command::Wolf::Main::CreateAndUploadOutline()
GetSystemTimeAsFileTime(&ft);
writer->WriteNamed(L"time", ft);

std::wstring strTimeStamp;
SystemDetails::GetTimeStamp(strTimeStamp);
writer->WriteNamed(L"timestamp", strTimeStamp.c_str());

auto mothership_id = SystemDetails::GetParentProcessId(_L_);
if (mothership_id)
{
Expand Down

0 comments on commit abaedd8

Please sign in to comment.