From 651843833f6734869d87064ab04aaa2797a7e008 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Fri, 26 Aug 2022 17:29:02 +0530 Subject: [PATCH] main: Bump p4-fusion version to v1.11.0 --- p4-fusion/main.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/p4-fusion/main.cc b/p4-fusion/main.cc index 7ea90b30..88a4601f 100644 --- a/p4-fusion/main.cc +++ b/p4-fusion/main.cc @@ -24,7 +24,7 @@ #include "p4/p4libs.h" #include "minitrace.h" -#define P4_FUSION_VERSION "v1.10.0" +#define P4_FUSION_VERSION "v1.11.0" void SignalHandler(sig_atomic_t s); @@ -57,7 +57,8 @@ int Main(int argc, char** argv) return 0; } - if (Arguments::GetSingleton()->GetNoColor() != "false") + bool noColor = Arguments::GetSingleton()->GetNoColor() != "false"; + if (noColor) { Log::DisableColoredOutput(); } @@ -157,6 +158,7 @@ int Main(int argc, char** argv) PRINT("Include Binaries: " << includeBinaries); PRINT("Profiling: " << profiling); PRINT("Profiling Flush Rate: " << flushRate); + PRINT("No Colored Output: " << noColor); GitAPI git(fsyncEnable);