summaryrefslogtreecommitdiff
path: root/src/lib/log.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-09-18 02:07:59 +0100
committerCarl Hetherington <cth@carlh.net>2012-09-18 02:07:59 +0100
commit3c1b239453936128d1711ffa063ad4e1617b3e40 (patch)
tree060213367c651ca0ddccf1d9470b35886a687f6e /src/lib/log.h
parent48794870183ac5c0dd2b4acc1f9c2e5d7349f284 (diff)
Sort of working log window.
Diffstat (limited to 'src/lib/log.h')
-rw-r--r--src/lib/log.h27
1 files changed, 18 insertions, 9 deletions
diff --git a/src/lib/log.h b/src/lib/log.h
index d32b368f5..2a242e24c 100644
--- a/src/lib/log.h
+++ b/src/lib/log.h
@@ -29,15 +29,11 @@
/** @class Log
* @brief A very simple logging class.
- *
- * This class simply accepts log messages and writes them to a file.
- * Its single nod to complexity is that it has a mutex to prevent
- * multi-thread logging from clashing.
*/
class Log
{
public:
- Log (std::string f);
+ Log ();
enum Level {
STANDARD = 0,
@@ -48,13 +44,26 @@ public:
void set_level (Level l);
-private:
- /** mutex to prevent simultaneous writes to the file */
+protected:
+ /** mutex to protect the log */
boost::mutex _mutex;
- /** filename to write to */
- std::string _file;
+
+private:
+ virtual void do_log (std::string m) = 0;
+
/** level above which to ignore log messages */
Level _level;
};
+class FileLog : public Log
+{
+public:
+ FileLog (std::string file);
+
+private:
+ void do_log (std::string m);
+ /** filename to write to */
+ std::string _file;
+};
+
#endif