Skip to content

Commit

Permalink
Merge pull request #51 from salesforce/bump-version
Browse files Browse the repository at this point in the history
  • Loading branch information
twarit-waikar authored Aug 26, 2022
2 parents bd5938c + 6518438 commit 7f8c81d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions p4-fusion/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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();
}
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit 7f8c81d

Please sign in to comment.