Removing file and line options - they can catch messages with string, int, string varargs

This commit is contained in:
Paul Sutton 2015-06-10 18:58:01 +01:00
parent 4819dae236
commit 09b945fd9e
1 changed files with 4 additions and 4 deletions

View File

@ -78,10 +78,10 @@ public:
virtual void debug(std::string message, ...) = 0;
// Same with line and file info
virtual void error(std::string file, int line, std::string message, ...) = 0;
virtual void warning(std::string file, int line, std::string message, ...) = 0;
virtual void info(std::string file, int line, std::string message, ...) = 0;
virtual void debug(std::string file, int line, std::string message, ...) = 0;
// virtual void error(std::string file, int line, std::string message, ...) = 0;
// virtual void warning(std::string file, int line, std::string message, ...) = 0;
// virtual void info(std::string file, int line, std::string message, ...) = 0;
// virtual void debug(std::string file, int line, std::string message, ...) = 0;
protected:
std::string get_service_name() { return service_name; }