Add option to compile with glog
Adding option to choose between glog and protobuf logger
Change-Id: I596fdde57b82f63f055dc3010a085a321808ea29
diff --git a/simple_server_main.cc b/simple_server_main.cc
index 99048ef..c008513 100644
--- a/simple_server_main.cc
+++ b/simple_server_main.cc
@@ -18,7 +18,9 @@
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
+#include <stdio.h>
+#include "logging.h"
#include "simple_server.h"
#include "sys_time.h"
@@ -35,7 +37,7 @@
int main(int argc, char **argv) {
int requested_port = -1;
-
+ ROUGHTIME_INIT_LOGGER(argv[0]);
if (argc == 2) {
char *endptr;
requested_port = strtoul(argv[1], &endptr, 10);