paxos/src/misc/logger.hh

21 lines
305 B
C++
Raw Permalink Normal View History

2020-05-05 12:11:54 +00:00
#pragma once
#include <string>
2020-05-05 17:29:14 +00:00
namespace paxos
2020-05-05 12:11:54 +00:00
{
enum Color
{
black = 30,
red = 31,
green = 32,
yellow = 33,
blue = 34,
magenta = 35,
cyan = 36,
white = 37
};
void log(std::string str, Color color);
2020-05-06 16:51:50 +00:00
} // namespace paxos