Skip to content

Commit

Permalink
Fix client build
Browse files Browse the repository at this point in the history
  • Loading branch information
vadzz-dev authored and OlegT committed Dec 17, 2024
1 parent 1bb73ee commit b947011
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions shared/V8ResourceImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -643,8 +643,11 @@ void V8ResourceImpl::PrintHealth()
Log::Info << "Resource health: " << resource->GetName() << Log::Endl;
Log::Info << " - Entities: " << entities.size() << Log::Endl;
Log::Info << " - Timers: " << timers.size() << Log::Endl;
Log::Info << " - Timer benchmarks: " << benchmarkTimers.size() << Log::Endl;
Log::Info << " - Vehicle passengers: " << vehiclePassengers.size() << Log::Endl;
Log::Info << " - Timer benchmarks: " << benchmarkTimers.size() << Log::Endl;

#ifdef ALT_SERVER_API
Log::Info << " - Vehicle passengers: " << vehiclePassengers.size() << Log::Endl;
#endif // ALT_SERVER_API
}

// Internal script globals
Expand Down

0 comments on commit b947011

Please sign in to comment.