mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 13:27:17 +01:00
Adding timestamp to logger.
This commit is contained in:
parent
68ade60004
commit
05fa6757ce
2
Log.cpp
2
Log.cpp
|
@ -1,9 +1,11 @@
|
||||||
#include "Log.h"
|
#include "Log.h"
|
||||||
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
||||||
|
|
||||||
Log * g_Log = nullptr;
|
Log * g_Log = nullptr;
|
||||||
|
|
||||||
void LogMsg::Process()
|
void LogMsg::Process()
|
||||||
{
|
{
|
||||||
|
output << boost::posix_time::second_clock::local_time() << " - ";
|
||||||
output << s.str();
|
output << s.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ CC = g++
|
||||||
CFLAGS = -std=c++11 -O2
|
CFLAGS = -std=c++11 -O2
|
||||||
include filelist.mk
|
include filelist.mk
|
||||||
INCFLAGS = -I/usr/include/ -I/usr/local/include/
|
INCFLAGS = -I/usr/include/ -I/usr/local/include/
|
||||||
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lcryptopp -lboost_system -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
|
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
|
||||||
LIBS =
|
LIBS =
|
||||||
|
|
||||||
all: obj i2p
|
all: obj i2p
|
||||||
|
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
CC = g++
|
CC = g++
|
||||||
CFLAGS = -g -Wall -std=c++0x
|
CFLAGS = -g -Wall -std=c++0x
|
||||||
include filelist.mk
|
include filelist.mk
|
||||||
INCFLAGS =
|
INCFLAGS =
|
||||||
LDFLAGS = -Wl,-rpath,/usr/local/lib -lcryptopp -lboost_system -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
|
LDFLAGS = -Wl,-rpath,/usr/local/lib -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
|
||||||
LIBS =
|
LIBS =
|
||||||
|
|
||||||
#check if AES-NI is supported by CPU
|
#check if AES-NI is supported by CPU
|
||||||
ifneq ($(shell grep -c aes /proc/cpuinfo),0)
|
ifneq ($(shell grep -c aes /proc/cpuinfo),0)
|
||||||
CPU_FLAGS = -DAESNI
|
CPU_FLAGS = -DAESNI
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ CC = clang++
|
||||||
CFLAGS = -g -Wall -std=c++11 -lstdc++ -I/usr/local/include
|
CFLAGS = -g -Wall -std=c++11 -lstdc++ -I/usr/local/include
|
||||||
include filelist.mk
|
include filelist.mk
|
||||||
INCFLAGS = -DCRYPTOPP_DISABLE_ASM
|
INCFLAGS = -DCRYPTOPP_DISABLE_ASM
|
||||||
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lcryptopp -lboost_system -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
|
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
|
||||||
LIBS =
|
LIBS =
|
||||||
|
|
||||||
# OSX Notes
|
# OSX Notes
|
||||||
# http://www.hutsby.net/2011/08/macs-with-aes-ni.html
|
# http://www.hutsby.net/2011/08/macs-with-aes-ni.html
|
||||||
|
|
Loading…
Reference in a new issue