diff options
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -51,7 +51,6 @@ Logger(std::string logFilename); /** * Enters a message in the log. The message will be timestamped. */ -void log(std::string log_text); void log(const char *log_text, ...); /** @@ -66,21 +65,4 @@ std::ofstream logFile; }; - -/** - * Initializes log file by opening it for writing. - */ -void init_log(); - -/** - * Enters a message in the log. The message will be timestamped. - */ -void log(const char *log_text, ...); - -/** - * Log an error and quit. The error will pop-up in Windows and will be printed - * to standard error everywhere else. - */ -void error(const std::string &error_text); - #endif |