Check for NO_COLOR before logging starts

This commit is contained in:
SChernykh
2023-01-01 22:12:16 +01:00
parent 248f74d948
commit 260564cff1
2 changed files with 10 additions and 10 deletions

View File

@@ -19,11 +19,6 @@
#include "params.h"
#include "stratum_server.h"
#include "p2p_server.h"
#include <stdlib.h>
#ifdef _MSC_VER
#pragma warning(disable : 4996)
#endif
void p2pool_usage();
@@ -31,11 +26,6 @@ namespace p2pool {
Params::Params(int argc, char* argv[])
{
const char* no_color = getenv("NO_COLOR");
if (no_color && *no_color) {
log::CONSOLE_COLORS = false;
}
for (int i = 1; i < argc; ++i) {
bool ok = false;