aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/datastore.h2
-rw-r--r--src/datastore/perf_datastore_api.c2
-rw-r--r--src/datastore/perf_plugin_datastore.c2
-rw-r--r--src/datastore/plugin_datastore_mysql.c2
-rw-r--r--src/datastore/plugin_datastore_postgres.c2
-rw-r--r--src/datastore/plugin_datastore_sqlite.c2
-rw-r--r--src/datastore/test_datastore_api.c2
-rw-r--r--src/datastore/test_datastore_api_management.c2
-rw-r--r--src/datastore/test_plugin_datastore.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/datastore/datastore.h b/src/datastore/datastore.h
index 1dcf7bb4b..fa8352d24 100644
--- a/src/datastore/datastore.h
+++ b/src/datastore/datastore.h
@@ -27,7 +27,7 @@
27#ifndef DATASTORE_H 27#ifndef DATASTORE_H
28#define DATASTORE_H 28#define DATASTORE_H
29 29
30#define DEBUG_DATASTORE GNUNET_NO 30#define DEBUG_DATASTORE GNUNET_EXTRA_LOGGING
31 31
32#include "gnunet_util_lib.h" 32#include "gnunet_util_lib.h"
33 33
diff --git a/src/datastore/perf_datastore_api.c b/src/datastore/perf_datastore_api.c
index 07df6a691..1ba215374 100644
--- a/src/datastore/perf_datastore_api.c
+++ b/src/datastore/perf_datastore_api.c
@@ -38,7 +38,7 @@
38#include "gnunet_datastore_service.h" 38#include "gnunet_datastore_service.h"
39#include <gauger.h> 39#include <gauger.h>
40 40
41#define VERBOSE GNUNET_NO 41#define VERBOSE GNUNET_EXTRA_LOGGING
42 42
43/** 43/**
44 * How long until we give up on transmitting the message? 44 * How long until we give up on transmitting the message?
diff --git a/src/datastore/perf_plugin_datastore.c b/src/datastore/perf_plugin_datastore.c
index ac3be4d5c..8f552c4eb 100644
--- a/src/datastore/perf_plugin_datastore.c
+++ b/src/datastore/perf_plugin_datastore.c
@@ -29,7 +29,7 @@
29#include "gnunet_datastore_plugin.h" 29#include "gnunet_datastore_plugin.h"
30#include <gauger.h> 30#include <gauger.h>
31 31
32#define VERBOSE GNUNET_NO 32#define VERBOSE GNUNET_EXTRA_LOGGING
33 33
34/** 34/**
35 * Target datastore size (in bytes). Realistic sizes are 35 * Target datastore size (in bytes). Realistic sizes are
diff --git a/src/datastore/plugin_datastore_mysql.c b/src/datastore/plugin_datastore_mysql.c
index 0448b7299..1048a370f 100644
--- a/src/datastore/plugin_datastore_mysql.c
+++ b/src/datastore/plugin_datastore_mysql.c
@@ -121,7 +121,7 @@
121#include "gnunet_util_lib.h" 121#include "gnunet_util_lib.h"
122#include <mysql/mysql.h> 122#include <mysql/mysql.h>
123 123
124#define DEBUG_MYSQL GNUNET_NO 124#define DEBUG_MYSQL GNUNET_EXTRA_LOGGING
125 125
126#define MAX_DATUM_SIZE 65536 126#define MAX_DATUM_SIZE 65536
127 127
diff --git a/src/datastore/plugin_datastore_postgres.c b/src/datastore/plugin_datastore_postgres.c
index 3c37325da..0b781485f 100644
--- a/src/datastore/plugin_datastore_postgres.c
+++ b/src/datastore/plugin_datastore_postgres.c
@@ -28,7 +28,7 @@
28#include "gnunet_datastore_plugin.h" 28#include "gnunet_datastore_plugin.h"
29#include <postgresql/libpq-fe.h> 29#include <postgresql/libpq-fe.h>
30 30
31#define DEBUG_POSTGRES GNUNET_NO 31#define DEBUG_POSTGRES GNUNET_EXTRA_LOGGING
32 32
33/** 33/**
34 * After how many ms "busy" should a DB operation fail for good? 34 * After how many ms "busy" should a DB operation fail for good?
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index 931202707..318c22cf5 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -31,7 +31,7 @@
31/** 31/**
32 * Enable or disable logging debug messages. 32 * Enable or disable logging debug messages.
33 */ 33 */
34#define DEBUG_SQLITE GNUNET_NO 34#define DEBUG_SQLITE GNUNET_EXTRA_LOGGING
35 35
36/** 36/**
37 * We allocate items on the stack at times. To prevent a stack 37 * We allocate items on the stack at times. To prevent a stack
diff --git a/src/datastore/test_datastore_api.c b/src/datastore/test_datastore_api.c
index 47b1945ad..b1dd0e5de 100644
--- a/src/datastore/test_datastore_api.c
+++ b/src/datastore/test_datastore_api.c
@@ -31,7 +31,7 @@
31#include "gnunet_protocols.h" 31#include "gnunet_protocols.h"
32#include "gnunet_datastore_service.h" 32#include "gnunet_datastore_service.h"
33 33
34#define VERBOSE GNUNET_NO 34#define VERBOSE GNUNET_EXTRA_LOGGING
35 35
36#define START_DATASTORE GNUNET_YES 36#define START_DATASTORE GNUNET_YES
37 37
diff --git a/src/datastore/test_datastore_api_management.c b/src/datastore/test_datastore_api_management.c
index 72348e28c..cb04d31d1 100644
--- a/src/datastore/test_datastore_api_management.c
+++ b/src/datastore/test_datastore_api_management.c
@@ -28,7 +28,7 @@
28#include "gnunet_protocols.h" 28#include "gnunet_protocols.h"
29#include "gnunet_datastore_service.h" 29#include "gnunet_datastore_service.h"
30 30
31#define VERBOSE GNUNET_NO 31#define VERBOSE GNUNET_EXTRA_LOGGING
32 32
33/** 33/**
34 * How long until we give up on transmitting the message? 34 * How long until we give up on transmitting the message?
diff --git a/src/datastore/test_plugin_datastore.c b/src/datastore/test_plugin_datastore.c
index 373e8f453..3504945ae 100644
--- a/src/datastore/test_plugin_datastore.c
+++ b/src/datastore/test_plugin_datastore.c
@@ -28,7 +28,7 @@
28#include "gnunet_protocols.h" 28#include "gnunet_protocols.h"
29#include "gnunet_datastore_plugin.h" 29#include "gnunet_datastore_plugin.h"
30 30
31#define VERBOSE GNUNET_NO 31#define VERBOSE GNUNET_EXTRA_LOGGING
32 32
33/** 33/**
34 * Number of put operations to perform. 34 * Number of put operations to perform.