summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/log.h b/src/log.h
index 9f6988c0..297df88f 100644
--- a/src/log.h
+++ b/src/log.h
@@ -32,14 +32,14 @@ class Logger
{
public:
/**
- * Constructor, opens log file for writing.
+ * Destructor, closes log file.
*/
- Logger(const std::string &logFilename);
+ ~Logger();
/**
- * Destructor, closes log file.
+ * Sets the file to log to and opens it
*/
- ~Logger();
+ void setLogFile(const std::string &logFilename);
/**
* Enters a message in the log. The message will be timestamped.