summaryrefslogtreecommitdiff
path: root/src/lib/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/server.h')
-rw-r--r--src/lib/server.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/server.h b/src/lib/server.h
index 55d107545..abc5676d8 100644
--- a/src/lib/server.h
+++ b/src/lib/server.h
@@ -94,7 +94,7 @@ private:
class Server : public boost::noncopyable
{
public:
- Server (boost::shared_ptr<Log> log);
+ Server (boost::shared_ptr<Log> log, bool verbose);
void run (int num_threads);
@@ -109,6 +109,7 @@ private:
boost::mutex _worker_mutex;
boost::condition _worker_condition;
boost::shared_ptr<Log> _log;
+ bool _verbose;
struct Broadcast {