From 4aac345bea8beb2f9dafe7fd9d8b87f139a9de5d Mon Sep 17 00:00:00 2001 From: paboyle Date: Sat, 2 Jan 2016 17:21:14 +0000 Subject: [PATCH] Updated logging to colour code according to message type --- lib/Init.cc | 27 ++++++++++----------------- lib/Log.cc | 23 ++++++++++++++++------- lib/Log.h | 24 +++++++++++++++++------- 3 files changed, 43 insertions(+), 31 deletions(-) diff --git a/lib/Init.cc b/lib/Init.cc index 873163d8..c1f1337c 100644 --- a/lib/Init.cc +++ b/lib/Init.cc @@ -237,25 +237,18 @@ void Grid_init(int *argc,char ***argv) std::cout< &logstreams) { diff --git a/lib/Log.h b/lib/Log.h index bd1a36e7..9119cc4f 100644 --- a/lib/Log.h +++ b/lib/Log.h @@ -37,13 +37,23 @@ namespace Grid { class Logger { protected: int active; - std::string name, topName; + std::string name, topName, COLOUR; public: static GridStopWatch StopWatch; static std::ostream devnull; + + static std::string BLACK; + static std::string RED ; + static std::string GREEN; + static std::string YELLOW; + static std::string BLUE ; + static std::string PURPLE; + static std::string CYAN ; + static std::string WHITE ; + static std::string NORMAL; - Logger(std::string topNm, int on, std::string nm) - : active(on), name(nm), topName(topNm) {}; + Logger(std::string topNm, int on, std::string nm,std::string col) + : active(on), name(nm), topName(topNm), COLOUR(col) {}; void Active(int on) {active = on;}; int isActive(void) {return active;}; @@ -53,9 +63,9 @@ public: StopWatch.Stop(); GridTime now = StopWatch.Elapsed(); StopWatch.Start(); - stream << std::setw(8) << std::left << log.topName << " : "; - stream << std::setw(12) << std::left << log.name << " : "; - stream << now << " : "; + stream << BLACK<< log.topName << BLACK<< " : "; + stream << log.COLOUR < &logstreams);