control: Increase flight recorder max entries

Double the number of entries per key from 20 to 40.  Mostly this is for
capturing more target changes.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I6576dc1574f2db00d9753759cf5a37078168f76e
diff --git a/control/json/utils/flight_recorder.cpp b/control/json/utils/flight_recorder.cpp
index af04834..71d4afd 100644
--- a/control/json/utils/flight_recorder.cpp
+++ b/control/json/utils/flight_recorder.cpp
@@ -25,7 +25,7 @@
 #include <sstream>
 #include <vector>
 
-constexpr auto maxEntriesPerID = 20;
+constexpr auto maxEntriesPerID = 40;
 
 namespace phosphor::fan::control::json
 {