Add a necessary header.
Without this, fuzztest no longer builds in some environments, e.g. Chromium.
PiperOrigin-RevId: 634393981
diff --git a/centipede/BUILD b/centipede/BUILD
index 665c834..fef3bb7 100644
--- a/centipede/BUILD
+++ b/centipede/BUILD
@@ -955,6 +955,7 @@
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/log",
"@com_google_absl//absl/log:check",
+ "@com_google_absl//absl/log:vlog_is_on",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",
diff --git a/centipede/distill.cc b/centipede/distill.cc
index d178d4f..1b15cf5 100644
--- a/centipede/distill.cc
+++ b/centipede/distill.cc
@@ -32,6 +32,7 @@
#include "absl/container/flat_hash_set.h"
#include "absl/log/check.h"
#include "absl/log/log.h"
+#include "absl/log/vlog_is_on.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/str_join.h"
#include "absl/synchronization/mutex.h"