logger.h
1 /********************************************************************************
2  * FARSA Utilities Library *
3  * Copyright (C) 2007-2011 Gianluca Massera <emmegian@yahoo.it> *
4  * *
5  * This program is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation; either version 2 of the License, or *
8  * (at your option) any later version. *
9  * *
10  * This program is distributed in the hope that it will be useful, *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU General Public License *
16  * along with this program; if not, write to the Free Software *
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
18  ********************************************************************************/
19 
20 #ifndef LOGGER_H
21 #define LOGGER_H
22 
23 #include "utilitiesconfig.h"
24 #include <QString>
25 
26 class QTextEdit;
27 
28 namespace farsa {
29 
50 class FARSA_UTIL_API Logger {
51 public:
52  enum LogLevel {
54  LogAll = 0,
60  Superquiet
61  };
62 
63 public:
67  static void info( QString msg );
71  static void warning( QString msg );
75  static void error( QString msg );
81  static void setLogFilename( QString logfile );
83  static void setQTextEdit( QTextEdit* textedit );
87  static void enableStdOut( bool enabled );
91  static void setLogLevel(LogLevel level);
96  static QString logLevelToString(LogLevel level);
101  static LogLevel stringToLogLevel(QString level);
102 private:
104  Logger();
106  ~Logger();
107 };
108 
109 } // end namespace farsa
110 
111 #endif