summaryrefslogtreecommitdiff
path: root/utils/log.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2014-01-29 23:20:19 +0000
committerVincent Sanders <vince@netsurf-browser.org>2014-01-29 23:20:19 +0000
commitd5a971c281b110d8fa481fa86ccd7af10d2d3cf0 (patch)
treecc2ce0759aa0d867fc5cb53aff970c11c8a80681 /utils/log.c
parente353973518839245edfb9c00d2fb9c6ef14032e8 (diff)
downloadnetsurf-d5a971c281b110d8fa481fa86ccd7af10d2d3cf0.tar.gz
netsurf-d5a971c281b110d8fa481fa86ccd7af10d2d3cf0.tar.bz2
move verbose log global into logging module and remove netsurf.h include
Diffstat (limited to 'utils/log.c')
-rw-r--r--utils/log.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/log.c b/utils/log.c
index 2aa39ee41..8ec42c1f7 100644
--- a/utils/log.c
+++ b/utils/log.c
@@ -23,10 +23,11 @@
#include <stdarg.h>
#include <stdio.h>
#include <sys/time.h>
-#include "desktop/netsurf.h"
#include "utils/log.h"
+bool verbose_log = false;
+
nserror nslog_init(nslog_ensure_t *ensure, int *pargc, char **argv)
{
nserror ret = NSERROR_OK;