summaryrefslogtreecommitdiff
path: root/utils/log.h
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.h
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.h')
-rw-r--r--utils/log.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/log.h b/utils/log.h
index ed953f37e..673419b66 100644
--- a/utils/log.h
+++ b/utils/log.h
@@ -21,9 +21,12 @@
#define _NETSURF_LOG_H_
#include <stdio.h>
-#include "desktop/netsurf.h"
+#include <stdbool.h>
+
#include "utils/errors.h"
+extern bool verbose_log;
+
/**
* Ensures the FILE handle is available to write logging to.
*