From b56bbf4ced311e221e0f788d50b71dfafba2c2a5 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 3 Aug 2014 17:02:25 -0700 Subject: [PATCH] Root logger is called "ROOT" not "root" --- src/log.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.hh b/src/log.hh index 2eaddd2..24727ef 100644 --- a/src/log.hh +++ b/src/log.hh @@ -35,7 +35,7 @@ struct Log unsigned int level = level::Info); static void Close(); - Log(const std::string& name = "root", unsigned int level = level::Info); + Log(const std::string& name = "ROOT", unsigned int level = level::Info); ~Log(); template Log& operator<<(const T& item);