summaryrefslogtreecommitdiffstats
path: root/src/Common/Logger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Logger.cpp')
-rw-r--r--src/Common/Logger.cpp50
1 files changed, 19 insertions, 31 deletions
diff --git a/src/Common/Logger.cpp b/src/Common/Logger.cpp
index 66fffd6..dc6c53c 100644
--- a/src/Common/Logger.cpp
+++ b/src/Common/Logger.cpp
@@ -1,44 +1,32 @@
/*
* Logger.cpp
*
- * Created on: 10.09.2008
- * Author: dante
+ * Copyright (C) 2008 Johannes Thorn <dante@g4t3.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Logger.h"
-#include <iostream>
namespace Mad {
namespace Common {
-void Logger::printMessage(MessageType typeOfMessage, std::string message) {
- switch(typeOfMessage) {
- case CRITICAL:
- std::cout << "CRITICAL: " << message << std::endl;
- break;
- case ERROR:
- std::cout << "ERROR: " << message << std::endl;
- break;
- case WARNING:
- std::cout << "WARNING: " << message << std::endl;
- break;
- case VERBOSE:
- std::cout << "MESSAGE: " << message << std::endl;
- break;
- case DEBUG:
- std::cout << "DEBUG: " << message << std::endl;
- break;
- default:
- std::cout << "MESSAGE: " << message << std::endl;
- }
-}
-
-Logger::Logger(int type) {
- this->loggingType = type;
-}
-
-Logger::~Logger() {
- // TODO Auto-generated destructor stub
+void Logger::log(MessageLevel level, const std::string &message) {
+ for(std::list<Logger*>::iterator logger = loggers.begin(); logger != loggers.end(); ++logger) {
+ if((*logger)->getLevel() >= level)
+ (*logger)->logMessage(level, message);
+ }
}
}