summaryrefslogtreecommitdiff
path: root/src/lib/server.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-11-05 22:59:39 +0000
committerCarl Hetherington <cth@carlh.net>2013-11-05 22:59:39 +0000
commit2fabfde079641001d0968ca2fee8e70a0b929e27 (patch)
tree33d77d3234353cdbeaaa73a92fb52ceb91aad681 /src/lib/server.h
parentf660fe3f1be97f373318806a77b3ce3fcd53cb73 (diff)
Tinker with verbosity of command-line server.
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 {