mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-02-02 03:06:27 +00:00
Check for NO_COLOR
before logging starts
This commit is contained in:
parent
248f74d948
commit
260564cff1
2 changed files with 10 additions and 10 deletions
10
src/log.cpp
10
src/log.cpp
|
@ -21,6 +21,11 @@
|
|||
#include <ctime>
|
||||
#include <fstream>
|
||||
#include <thread>
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4996)
|
||||
#endif
|
||||
|
||||
static constexpr char log_category_prefix[] = "Log ";
|
||||
static constexpr char log_file_name[] = "p2pool.log";
|
||||
|
@ -86,6 +91,11 @@ public:
|
|||
}
|
||||
#endif
|
||||
|
||||
const char* no_color = getenv("NO_COLOR");
|
||||
if (no_color && *no_color) {
|
||||
CONSOLE_COLORS = false;
|
||||
}
|
||||
|
||||
LOGINFO(0, "started");
|
||||
|
||||
if (!m_logFile.is_open()) {
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue