Revert "Commit on debug_log every 10 seconds"

This reverts commit 5461eb0529.
pull/4149/head
René Cannaò 3 years ago
parent 5461eb0529
commit 6a4acf1c78

@ -31,7 +31,6 @@ static pthread_rwlock_t filters_rwlock;
static SQLite3DB * debugdb_disk = NULL;
sqlite3_stmt *statement1=NULL;
static unsigned int debug_output = 1;
static unsigned long long last_checkpoint = 0;
#endif /* DEBUG */
/*
@ -214,12 +213,6 @@ void proxy_debug_func(enum debug_module module, int verbosity, int thr, const ch
}
}
if (write_to_disk == true) {
if (last_checkpoint == 0 || (curtime > last_checkpoint + 10*1000*1000)) {
// commit every 10 seconds
last_checkpoint = curtime;
db->execute("COMMIT");
db->execute("BEGIN");
}
rc=(*proxy_sqlite3_bind_int64)(statement1, 1, curtime); ASSERT_SQLITE_OK(rc, db);
rc=(*proxy_sqlite3_bind_int64)(statement1, 2, curtime-pretime); ASSERT_SQLITE_OK(rc, db);
rc=(*proxy_sqlite3_bind_int64)(statement1, 3, thr); ASSERT_SQLITE_OK(rc, db);

Loading…
Cancel
Save