Don't test log file tracing in simulation

This commit is contained in:
Lukas Joswiak 2021-02-16 16:54:35 -08:00
parent c075415a51
commit 7a40190500
1 changed files with 3 additions and 3 deletions

View File

@ -97,9 +97,9 @@ struct Span {
// values in this enum can change without notice.
enum class TracerType {
DISABLED = 0,
LOG_FILE = 1,
NETWORK_LOSSY = 2,
END = 3
NETWORK_LOSSY = 1,
END = 2, // Any tracers that come after END will not be tested in simulation
LOG_FILE = 3
};
struct ITracer {