You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
428 B
12 lines
428 B
#pragma once
|
|
|
|
#include <iostream>
|
|
#include <thread>
|
|
|
|
#ifdef NDEBUG
|
|
#define pEpLog(msg) do{}while(0)
|
|
#else
|
|
#define pEpLog(msg) do{std::cout << "Thread:" << std::this_thread::get_id() << ' ' <<__FILE__ << "::" << __FUNCTION__ << " - " << msg << '\n';} while(0)
|
|
#endif
|
|
|
|
#define pEpErr(msg) do{std::cerr << "Thread:" << std::this_thread::get_id() << ' ' <<__FILE__ << "::" << __FUNCTION__ << " - " << msg << '\n';} while(0)
|