blob: 83b1c3c6752c6d9496fdba3465dd7c852e22105b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "wb.h"
#include "logger.h"
#include "response.h"
static Logger *global_log = Logger::getInstance();
Response WB::advance()
{
global_log->log(INFO, "hello from write back!");
return OK;
}
|