From 09b945fd9edfe387f3f842ec229116fbf8b96423 Mon Sep 17 00:00:00 2001 From: Paul Sutton Date: Wed, 10 Jun 2015 18:58:01 +0100 Subject: [PATCH] Removing file and line options - they can catch messages with string, int, string varargs --- srsapps/common/include/srsapps/common/log.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srsapps/common/include/srsapps/common/log.h b/srsapps/common/include/srsapps/common/log.h index f0edc7fb2..bcba58745 100644 --- a/srsapps/common/include/srsapps/common/log.h +++ b/srsapps/common/include/srsapps/common/log.h @@ -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; }