fix NullLogger to work with the new logging interface

This commit is contained in:
ps 2011-01-08 18:30:16 +00:00
parent a5ee8d8885
commit 4ee4f74a66
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
ChangeLog
---------
2011-01-08 19:28 Juan José Gutiérrez de Quevedo <juanjo@gutierrezdequevedo.com>
* fixed NullLogger
2011-01-08 17:22 Juan José Gutiérrez de Quevedo <juanjo@gutierrezdequevedo.com>
* fixed small bug when submitting stats that would stop the thread that

View File

@ -35,7 +35,7 @@ using namespace std;
class NullLogger: public Logger
{
public:
void addMessage(int,string){}; //ignore messages
void addMessage(string,int,int,string){}; //ignore messages
};
#endif //NULLLOGGER_H